To remove tab characters in your PHP string you can do the following… <?php $a "this is a sentence" $a = str_replace("t",' ',$a); echo $a; ?>.
確定! 回上一頁