PHP删除Linux和Windows的字符串中的换行符

时间:2011-10-10 08:25:31

标签: php newline

目前我必须致电

    $html = str_replace($search="\r\n", $replace='', $subject=$html);
    $html = str_replace($search="\n",   $replace='', $subject=$html);

删除字符串new line中的$html字符。有更好/更短的方式吗?

此致

2 个答案:

答案 0 :(得分:10)

尝试:

$html = str_replace(array("\r", "\n"), '', $html);

答案 1 :(得分:1)

是的,您可以使用数组立即执行此操作:

$search = array("\r\n", "\n");
$result = str_replace($search, $replace='', $subject=$html);

请参阅str_replaceDocs