溫馨提示×

php如何去掉換行符

小億
82
2024-09-03 09:49:34
欄目: 編程語言

在PHP中,可以使用str_replace()函數(shù)或者preg_replace()函數(shù)來去掉字符串中的換行符。

方法1:使用str_replace()函數(shù)

$string = "Hello\nWorld";
$new_string = str_replace("\n", "", $string);
echo $new_string; // 輸出:HelloWorld

方法2:使用preg_replace()函數(shù)

$string = "Hello\nWorld";
$new_string = preg_replace("/\r|\n/", "", $string);
echo $new_string; // 輸出:HelloWorld

這兩種方法都可以實現(xiàn)去掉換行符的目的。str_replace()函數(shù)更適用于簡單的字符串替換,而preg_replace()函數(shù)則支持正則表達式,更加強大。

0