可以使用preg_replace函數刪除html註釋,語法格式為「preg_replace(要搜尋的模式,"",字串或陣列)」。 preg_replace執行一個正規表示式的搜尋和取代。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦。
html中註解的內容用程式碼刪除掉可以用正規表示式實作。
1、一般html的註解寫法是f80737884d6c93a4ecaeac0ca41583ac
3ed74a66f8b464f4c7e40a8f58c84fd9
2、可以用以下自訂方法實作刪除無用的註解:
function remove_html_comments($content = "") { return preg_replace("/<!--(.|\s)*?-->/", "", $content); }
入參是content,preg_replace是正規替換,規則是74c7351874ca4efbaf4174d3c6ce4966
擴充資料:
preg_replace — 執行一個正規表示式的搜尋和取代
preg_replace ( string|array $pattern , string|array $replacement , string|array $subject , int $limit = -1 , int &$count = null )
搜尋subject 中匹配pattern 的部分, 以replacement 替換。
參數說明:
$pattern: 要搜尋的模式,可以是字串或字串陣列。
$replacement: 用於替換的字串或字串陣列。
$subject: 要搜尋已取代的目標字串或字串陣列。
$limit: 可選,對於每個模式用於每個 subject 字串的最大可替換次數。預設是-1(無限制)。
$count: 可選,為替換執行的次數。
傳回值
如果 subject 是一個數組, preg_replace() 傳回一個數組, 其他情況下傳回一個字串。
如果匹配被查找到,替換後的 subject 被返回,其他情況下 返回沒有改變的 subject。如果發生錯誤,則傳回 NULL。
推薦學習:php影片教學
以上是如何刪除html註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!