php trim()不能去掉的空格怎么办

  • 来源:网络
  • 更新日期:2020-08-18

摘要:解决php trim()不能去掉的空格方法:使用正则表达式可以去掉字符串首位的空格,包括全角和半角,代码为【$user = mb_ereg_replace('^( | )+','', $name)】。解

解决php trim()不能去掉的空格方法:使用正则表达式可以去掉字符串首位的空格,包括全角和半角,代码为【$user = mb_ereg_replace('^( | )+','', $name)】。

解决php trim()不能去掉的空格方法:

php 的trim()是我们应用最多的字符串去空格函数,但是trim()确不能去掉半角空格,此时,就需要采取其他的方法了

此正则表达式可以去掉字符串首位的空格,不管全角还是半角

代码如下:

  $user = mb_ereg_replace('^( | )+','', $name);
  $user = mb_ereg_replace('( | )+$','', $name);

相关学习推荐:php编程(视频)