在PHP中,可以使用以下幾種方法去除字符串兩邊的空格、空字符串和換行符:
- 使用trim()函數(shù)去除字符串兩邊的空格和空字符串,例如:
$str = " Hello World! "; $trimmed = trim($str); echo $trimmed;
-
使用preg_replace()函數(shù)去除字符串中的空格、空字符串和換行符,例如:文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-745154.html
$str = " Hello\nWorld! "; $trimmed = preg_replace('/^\s+|\s+$/m', '', $str); echo $trimmed;
? ? 3、使用str_replace()函數(shù)去除字符串中的空格、空字符串和換行符,例如:文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-745154.html
$str = " Hello\nWorld! ";
$trimmed = str_replace(array("\n","\r","\t"),"",$str);
echo $trimmed;
到了這里,關(guān)于php去除字符串兩邊空格空字符串換行方法的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!