***PHP 去除換行符

  PHP在不同的系統中,換行是不同的 Linux:\n Windows:\r\n mac:\r   所以去除回車換行的方法: 1.使用php定義好的變量(比較好的方法,推薦) $str= str_replace(PHP_EOL, '', $str);    2.使用str_replace 來替換換行 $str= str_replace(array("\r\n", "\r", "\n"), "",
相關文章
相關標籤/搜索