Home  >  Article  >  php教程  >  PHP删除字符串中的空格和换行符终极方法

PHP删除字符串中的空格和换行符终极方法

WBOY
WBOYOriginal
2016-06-06 19:38:291614browse

删除空格和回车,来自www.yanqing.cc 无 //来自 www.yanqing.cc//删除空格和回车function trimall($str){ $qian=array(" "," ","\t","\n","\r"); return str_replace($qian, '', $str); }

删除空格和回车,来自www.yanqing.cc
//来自 www.yanqing.cc
//删除空格和回车
function trimall($str){
    $qian=array(" "," ","\t","\n","\r");
    return str_replace($qian, '', $str);   
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:学习LaravelNext article:php 解析emoji表情 支持微信