当前位置:Gxlcms > PHP教程 > PHP不支持的修饰符

PHP不支持的修饰符

时间:2021-07-01 10:21:17 帮助过:9人阅读

PHP不支持的修饰符是/e修饰符。

8173cf38b9c8ad7813d07932d2658f8.png

具体修饰符参考以下地址:

正则表达式模式中可用 模式修饰符:

http://php.com/manual/zh/reference.pcre.pattern.modifiers.php

例子:

$_smarty="ok";
$_smarty_results = preg_replace('!(\{/?nocache\:[0-9a-f]{32}#\d+\})!s','date("Y-m-d H:i:s")',$_smarty);

更改为preg_replace_callback后:

$_smarty_results = preg_replace_callback('!(\{/?nocache\:[0-9a-f]{32}#\d+\})!s',function($match){return date("Y-m-d H:i:s");},$_smarty_results);

更多PHP相关知识,请访问PHP中文网!

以上就是PHP不支持的修饰符的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行