2008年6月25日星期三

PHP 去掉回车换行符

通过 str_replace实现 回车换行操作
$str = str_replace(array("\r","\n"),array('',''), $str);

没有评论: