preg_replace_callback使用的有关问题
程序员文章站
2022-06-14 07:56:06
...
preg_replace_callback使用的问题
$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 属性的拿出来单做
$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);
相关文章
相关视频
推荐阅读
-
有关HTML5 Video对象的ontimeupdate事件(Chrome上无效)的问题
-
基于Android SDK-在64位Linux中使用需要注意的问题
-
ASP.Net MVC_DotNetZip简单使用方法,解决文件压缩的问题
-
Mysql5.7中使用group concat函数数据被截断的问题完美解决方法
-
使用 Eclipse 给 APK 签名遇到的问题及解决方法
-
Android 使用volley过程中遇到的问题解决办法
-
在arcgis使用python脚本进行字段计算时是如何解决中文问题的
-
SQL Server使用Merge语句当源表数据集为空时,无法进行查询的问题
-
完美解决node.js中使用https请求报CERT_UNTRUSTED的问题
-
PHP使用Memcache时模拟命名空间及缓存失效问题的解决