php如何移除字串首尾兩端空格?
#可以使用trim()函數
#定義與用法:
trim()函數移除字串兩端的空白字元或其他預定義字元。
語法:##
trim(string,charlist)
string:必需。规定要检查的字符串。 charlist:可选。规定从字符串中删除哪些字符。
<?php $str = " Hello World! "; echo "Without trim: " . $str; echo "<br>"; echo "With trim: " . trim($str); ?>上述程式碼輸出:
Without trim: Hello World!相關參考:With trim: Hello World!
以上是php如何去除字串首尾兩端空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!