>백엔드 개발 >PHP 튜토리얼 >关于preg_replace_callback中的匿名函数使用中遇到的问题

关于preg_replace_callback中的匿名函数使用中遇到的问题

WBOY
WBOY원래의
2016-06-06 20:13:261232검색

最近升级php5.3到php5.6.19后,出现了一些弃用函数,比如:Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead。于是就着手修改,将其替换为preg_replace_callback。
事先当然了解一下其用法,但这个不是重点。当下出现的问题是:我改好后(贴出改完的代码),

<code>/* replace special blocks by "{php}" */
        $source_content = preg_replace_callback($search, function ($r) {
            $str = $this->_quote_replace($this->left_delimiter);
            $str .= 'php';
            $str .= str_repeat("\n", substr_count($r[0], "\n"));
            $str .= $this->_quote_replace($this->right_delimiter);
            return $str;
        }, $source_content);
</code>

结果报Fatal error: Using $this when not in object context这个错误。
这里是实例化一个对象的结果。里面的函数也都不是静态的。
如何解决这个问题?


问题已解决,这个涉及到php的版本,在php5.4以上就没问题了。

回复内容:

最近升级php5.3到php5.6.19后,出现了一些弃用函数,比如:Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead。于是就着手修改,将其替换为preg_replace_callback。
事先当然了解一下其用法,但这个不是重点。当下出现的问题是:我改好后(贴出改完的代码),

<code>/* replace special blocks by "{php}" */
        $source_content = preg_replace_callback($search, function ($r) {
            $str = $this->_quote_replace($this->left_delimiter);
            $str .= 'php';
            $str .= str_repeat("\n", substr_count($r[0], "\n"));
            $str .= $this->_quote_replace($this->right_delimiter);
            return $str;
        }, $source_content);
</code>

结果报Fatal error: Using $this when not in object context这个错误。
这里是实例化一个对象的结果。里面的函数也都不是静态的。
如何解决这个问题?


问题已解决,这个涉及到php的版本,在php5.4以上就没问题了。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.