Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-06 19:38:29
Original
1613 people have browsed it

删除空格和回车,来自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);   
}
Copy after login
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!