目前我必须致电
$html = str_replace($search="\r\n", $replace='', $subject=$html);
$html = str_replace($search="\n", $replace='', $subject=$html);
删除字符串new line
中的$html
字符。有更好/更短的方式吗?
此致
答案 0 :(得分:10)
尝试:
$html = str_replace(array("\r", "\n"), '', $html);
答案 1 :(得分:1)
是的,您可以使用数组立即执行此操作:
$search = array("\r\n", "\n");
$result = str_replace($search, $replace='', $subject=$html);
请参阅str_replace
Docs。