欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

//去掉首尾的中英文空格

shiping1 的头像
 //去掉首尾的中英文空格
 function removeCnEnSpace($str)
 {
     return mb_ereg_replace('(^( | )+|( | )+$)', '', $str);
     
     
 }
普通分类: