文章摘要:php如何去掉字符串中的空格 php去除字符串中的空格
在php中去掉字符串中空格的方法 1.使用trim函数去除字符串首尾两端的空格 $str = ' Hello […]
在php中去掉字符串中空格的方法
1.使用trim函数去除字符串首尾两端的空格
$str = ' Hello world! ';
echo trim($str);
输出结果为:
Hello world!
2.使用ltrim函数去除字符串首部的空格
$str = ' Hello world! ';
echo ltrim($str);
输出结果为:
Hello world!
3.使用rtrim函数去除字符串尾部的空格
$str = ' Hello world! ';
echo rtrim($str);
输出结果为:
Hello world!