標籤:ring 分行符號 返回 pre 刪除字串 string text new 去掉
string trim ( string $str [, string $charlist = ” \t\n\r\0\x0B” ] )
此函數返回字串 str 去除首尾空白字元後的結果。如果不指定第二個參數, trim() 將去除這些字元:
1.” ” (ASCII 32 (0x20)),普通空格符。
2. “\t” (ASCII 9 (0x09)),定位字元。
3. “\n” (ASCII 10 (0x0A)),分行符號。
4. “\r” (ASCII 13 (0x0D)),斷行符號符。
5. “\0” (ASCII 0 (0x00)),空位元組符。
6. “\x0B” (ASCII 11 (0x0B)),垂直定位字元。
<?php $text = "\t\tThese are a few words :) ... "; $binary = "\x09Example string\x0A"; $hello = "Hello World"; $str = "##\t使用函數trim去掉字串兩端特定字元####"; $new_text = trim($text); $new_binary = trim($binary); $new_hello = trim($hello); $new_str = trim($str,"#"); echo $new_text; //These are a few words :) ... echo $new_binary; //Example string echo $hello; //Hello World echo $new_str; //使用函數trim去掉字串兩端特定字元?>
以上函數功能,同時適用於ltrim()、rtrim(),這2個函數
1、ltrim();刪除字串開頭的空白字元(或其他字元)
2、rtrim();刪除字串末端的空白字元(或者其他字元)
PHP字串函數-trim()執行個體用法