发布网友 发布时间:2022-04-23 15:19
共5个回答
热心网友 时间:2022-04-06 01:50
<?php
$order = array("\r\n", "\n", "\r");
$replace = '';
$str = str_replace($order, $replace, $str);
?>
热心网友 时间:2022-04-06 03:08
$str = str_replace("\r\n","",$str);
热心网友 时间:2022-04-06 04:43
str_replace('\r\n','',$str);
热心网友 时间:2022-04-06 06:34
谁言寸草心。。报得三春晖。。
热心网友 时间:2022-04-06 08:42
不要在后面加<br>就可以追问我问得是如何过滤换行符。
追答str_replace('\r\n','',$str);