", '', $str)」。"/> ", '', $str)」。">
兩種移除方法:1、使用strip_tags()函數刪除html換行符,語法「strip_tags($str,$allow)」;省略「allow」參數時會刪除全部標籤,如果不省略則會保留「allow」參數設定的標籤。 2.使用str_replace()函數將html換行符號替換為空字元即可,語法「str_replace("
", '', $str)」。
本教學操作環境:windows7系統、PHP8版、DELL G3電腦
php移除html換行符的方法
方法1:使用strip_tags() 函數
strip_tags() 函數剝去字串中的HTML、XML 以及PHP 的標籤。
註解:函數總是會剝離 HTML 註解。這一點無法透過 allow 參數改變。
註解:此函數是二進位安全的。
strip_tags(string,allow)
參數 | 描述 |
---|---|
#string | 必要。規定要檢查的字串。 |
allow | #可選。規定允許的標籤。這些標籤不會被刪除。 |
傳回值:傳回被剝離的字串。
範例:
<?php $str="Hello<br> world!"; echo $str."<hr>"; echo strip_tags($str); ?>
方法2:使用str_replace()函數
str_replace() 函數取代字符字串中的一些字元(區分大小寫),傳回帶有替換值的字串。
str_replace(find,replace,string,count)
只需要使用str_replace() 函數將html換行符「
」替換為空字元即可。
<?php $str="Hello<br> world!"; echo $str."<hr>"; echo str_replace("<br>", '', $str); ?>
擴充知識:php移除換行符號的方法--利用str_replace()函數
str_replace()函數用來替換字串中的一些字元。
實作程式碼:
1)使用轉義字元函數
$str = str_replace(array("/r/n", "/r", "/n"), '', $str);
2)使用正则表达式替换
$str = preg_replace('//s*/', '', $str);
3)使用PHP系統常數【建議】
$str = str_replace(PHP_EOL, '', $str);
推薦學習:《PHP影片教學》
以上是php怎麼去除html換行符的詳細內容。更多資訊請關注PHP中文網其他相關文章!