我使用CI_Minifier并在更新PHP后出现问题。
现在我在使用preg_match
函数时收到错误。
if (!preg_match("/^[\w-:]+$/", $tag)) { #error line
$node->_[HDOM_INFO_TEXT] = '<' . $tag . $this->copy_until('<>');
if ($this->char === '<') {
$this->link_nodes($node, false);
return true;
}
if ($this->char==='>') {
$node->_[HDOM_INFO_TEXT] .= '>';
}
$this->link_nodes($node, false);
$this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
return true;
}
错误是:
编译失败:偏移量为4的字符类中的无效范围
逃脱连字符:
if (!preg_match("/^[\w\-:]+$/", $tag)) {
或者把它放在字符类的开头:
if (!preg_match("/^[-\w:]+$/", $tag)) {
或者最后:
if (!preg_match("/^[\w:-]+$/", $tag)) {