首页  >  文章  >  后端开发  >  preg_replace_callback使用的问题

preg_replace_callback使用的问题

WBOY
WBOY原创
2016-06-23 13:53:59853浏览

$pattern = array(
            '//', // 替换smarty注释
            '//',               // 替换不换行的html注释
            '/(href=["|\'])\.\.\/(.*?)(["|\'])/i',  // 替换相对链接
            '/((?:background|src)\s*=\s*["|\'])(?:\.\/|\.\.\/)?(images\/.*?["|\'])/is', // 在images前加上 $tmp_dir
            '/((?:background|background-image):\s*?url\()(?:\.\/|\.\.\/)?(images\/)/is', // 在images前加上 $tmp_dir
            '/{nocache}(.+?){\/nocache}/ise', //无缓存模块
            );
        $replace = array(
            '\1',
            '',
            '\1\2\3',
            '\1' . $tmp_dir . '\2',
            '\1' . $tmp_dir . '\2',
            "'{insert name=\"nocache\" ' . '" . $this->_echash . "' . base64_encode('\\1') . '}'",
            );

        return preg_replace($pattern, $replace, $source);

因为preg_replace被废弃了,使用preg_replace_callback替换应该怎么写啊?大侠指导一下好吗?


回复讨论(解决方案)

把有 /e 属性的拿出来单做

 $source = preg_replace_callback(   '/{nocache}(.+?){\/nocache}/is',    create_function('$r', "'{insert name=\"nocache\" ' . '" . $this->_echash . "' . base64_encode($r[1]) . '}'"),   $source);

谢谢,我试一下。

 /e 修正符使 preg_replace() 将 replacement 参数当作 PHP 代码(在适当的逆向引用替换完之后)

感谢您的回答。给分

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn