PHP去除字符串的前后空格

1、使用trim()函数去掉空格

trim($val)

2、使用正则表达式去掉空格

preg_replace(' ','',$val)

 

你可能感兴趣的