编译失败:偏移量为4的字符类中的无效范围

问题描述 投票:0回答:1

我使用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的字符类中的无效范围

php codeigniter preg-match
1个回答
0
投票

逃脱连字符:

if (!preg_match("/^[\w\-:]+$/", $tag)) { 

或者把它放在字符类的开头:

if (!preg_match("/^[-\w:]+$/", $tag)) { 

或者最后:

if (!preg_match("/^[\w:-]+$/", $tag)) { 
© www.soinside.com 2019 - 2024. All rights reserved.