preg_replace_callback函数解决方案
程序员文章站
2024-01-14 12:45:34
...
preg_replace_callback函数
这一句 用preg_replace_callback函数怎么改写呢 求指教下
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
还是一样的 也还是一字符串啊 还是原来的方式就行了
------解决方案--------------------
$replacement = function ($matches) { return '{include file='.strtolower($matches[1]). '}';};
$val = preg_replace("/\[([^\[\]]*)\]/eis", "'.'.str_replace('$','\$','\\1')", $val);
这一句 用preg_replace_callback函数怎么改写呢 求指教下
------解决方案--------------------
$val = preg_replace_callback("/\[([^\[\]]*)\]/eis", function($match){ return str_replace('$','\$',$match)}, $val);
------解决方案--------------------
$val = preg_replace_callback(
'/\[([^\[\]]*)\]/is',
function ($matches) {
return '.'.str_replace('$','\$',$matches[1]);
},
$val
);
echo $val;
------解决方案--------------------
还是一样的 也还是一字符串啊 还是原来的方式就行了
------解决方案--------------------
$replacement = function ($matches) { return '{include file='.strtolower($matches[1]). '}';};
相关文章
相关视频