正则匹配成功时才替换掉html

This commit is contained in:
lion 2021-07-18 23:37:35 +08:00
parent 39dc0ca9c6
commit e4fc716acd

View File

@ -125,8 +125,8 @@ class Query
*/
public function removeHead()
{
$html = preg_replace('/(<head>|<head\s+.+?>).+<\/head>/is', '<head></head>', $this->html);
$this->setHtml($html);
$html = preg_replace('/(<head>|<head\s+.+?>).+?<\/head>/is', '<head></head>', $this->html);
$html && $this->setHtml($html);
return $this->ql;
}