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()實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!