php去除首尾字符的方法:可以利用內(nèi)置函數(shù)trim()來去除。trim()函數(shù)可以移除字符串兩側(cè)的空白字符或其他預(yù)定義字符,并返回已修改的字符串,例如:【trim($string)】。
trim() 函數(shù)移除字符串兩側(cè)的空白字符或其他預(yù)定義字符,并返回已修改的字符串。
(推薦教程:php視頻教程)
語法:
trim(string,charlist)參數(shù)說明:
string 必需。規(guī)定要檢查的字符串
charlist 可選。規(guī)定從字符串中刪除哪些字符
(相關(guān)推薦:php培訓(xùn))
代碼示例:
<?php$str = "nnnhello world!nnn";echo "without trim: " . $str;echo "<br>";echo "with trim: " . trim($str);?>運(yùn)行結(jié)果:
without trim: hello world!with trim: hello world!