可以使用「strip_tags()」函數來移除html標籤,語法格式為「strip_tags(要檢查的字串,不會被刪除的標籤)」。 strip_tags函數剝開字串中的HTML、XML以及PHP的標籤,該函數總是會剝離HTML註解。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
foreach ($list['company_list'] as $key => $value) { $list['company_list'][$key]['summary'] =strip_tags($list['company_list'][$key]['summary']);//去除html标签 $list['company_list'][$key]['summary'] = str_replace(' ',' ', $list['company_list'][$key]['summary']);
strip_tags()函數可以輕鬆實現從字符串中移除HTML 和PHP 標記。
使用方法:
trip_tags ( string $str [, string $allowable_tags ] );
第一個參數為必須的,也就是要移除HTML 和PHP標記的來源數據,第二個參數是可選的,表示不需要過濾的標記。
str_replace() 函數使用一個字串取代字串中的另一些字元
str_replace(find,replace,string,count)
##描述 | |
---|---|
find | 必要。規定要找的值。 |
replace | 必要。規定替換 find 中的值的值。 |
string | 必要。規定被搜尋的字串。 |
count | 可選。一個變量,對替換數進行計數。 |
推薦學習:php影片教學
#以上是HTML標籤如何移除的詳細內容。更多資訊請關注PHP中文網其他相關文章!