php替换换行符

<?php

$order   = array(“\r\n”, “\n”, “\r”);
$replace = ”;
$str=str_replace($order, $replace, $str);

?>

由于在不同的操作系统中换行符是不一样的,所以用三种替换方式

可以这样用:

public function htmlbr($str){
$order = array(“\r\n”, “\n”, “\r”);
$replace = ‘<br>’;
$str=str_replace($order, $replace, $str);
return $str;
}