报错提示:
Fatal error: Function name must be a string in D:\wwwroot\zbphp.com\ThinkPHP\Library\Behavior\ReadHtmlCacheBehavior.class.php on line
87
代码如下:
// {|FUN} 单独使用函数 $rule = preg_replace_callback(‘/{|(\w+)}/‘, function($match){return $match[1]();},$rule);
解决方法:支持大小写不区分的函数
// {|FUN} 单独使用函数 $rule = preg_replace_callback(‘/{|(\w+)}/i‘, function($match){return $match[1]();},$rule);
时间: 2024-10-30 00:19:47