php去除回車的方法:1、使用【str_replace】來替換換行;2、使用正則替換;3、使用php定義好的變量,代碼為【$str = str_replace(php_eol, '', $str)】。
php去除回車的方法:
php 不同系統(tǒng)的換行
不同系統(tǒng)之間換行的實(shí)現(xiàn)是不一樣的
linux 與unix中用 \\\\n
mac 用 \\\\r
window 為了體現(xiàn)與linux不同 則是 \\\\r\\\\n
所以在不同平臺(tái)上 實(shí)現(xiàn)方法就不一樣
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);想了解更多編程學(xué)習(xí),敬請(qǐng)關(guān)注php培訓(xùn)欄目!