时间:2021-07-01 10:21:17 帮助过:22人阅读
php替换空格的方法:可以利用preg_replace()函数并结合正则表达式【/\s+/】来替换空格,如【preg_replace('/\s+/',' ',$contents)】。
函数介绍:
preg_replace 函数执行一个正则表达式的搜索和替换。
(推荐教程:php视频教程)
举例:
替换所有空格为空
$contents=" abc "; $contents=preg_replace('/\s+/','',$contents); //结果$contents="abc";
相关推荐:php培训
以上就是php怎么替换空格的详细内容,更多请关注gxlcms其它相关文章!