導讀:PHP在生成靜態文件的時候,有時候會因為一些混編問題讓HTML標簽不完整或混亂而導致頁面混亂。作者分享下面這段小代碼可以非常方便解決問題。
function closetags($html) { preg_match_all('#<(?!meta|img|br|hr|input\b)\b([a-z]+)(?: .*)?(? #iU', $html, $result); $openedtags = $result[1]; preg_match_all('##iU', $html, $result); $closedtags = $result[1]; $len_opened = count($openedtags); if (count($closedtags) == $len_opened) { return $html; } $openedtags = array_reverse($openedtags); for ($i=0; $i < $len_opened; $i++) { if (!in_array($openedtags[$i], $closedtags)) { $html .= ' '; } else { unset($closedtags[array_search($openedtags[$i], $closedtags)]); }