php刪除換行符號的方法:可以利用php定義好的變數PHP_EOL來實現,如【str_replace(PHP_EOL, '', $str);】。也可以用正規則來刪除,如【preg_replace('//s*/', '', $str);】。
具體方法:
(推薦教學:php影片教學)
1、使用str_replace 來取代換行
$str = str_replace(array("/r/n", "/r", "/n"), "", $str);
2、使用正規取代
$str = preg_replace('//s*/', '', $str);
3、使用php定義好的變數(建議使用)
$str = str_replace(PHP_EOL, '', $str); $str = str_replace(PHP_EOL, '', $str);
相關推薦:php培訓
以上是php如何刪除換行符的詳細內容。更多資訊請關注PHP中文網其他相關文章!