使用preg_replace函数不能实现功能,该如何处理
程序员文章站
2022-06-01 11:32:53
...
使用preg_replace函数不能实现功能
$V_Content = preg_replace("/\[em:(\d+):]/is", "", $row['V_Content']);
$V_Content = preg_replace("/\/is", ' ', $V_Content);
使用preg_replace函数把[em:12]变为图片,但是还是显示[em:12]不显示图片!
希望各位高手指点一下!谢谢
------解决方案--------------------
/\[em:(\d+)\]/is
$V_Content = preg_replace("/\[em:(\d+):]/is", "", $row['V_Content']);
$V_Content = preg_replace("/\
使用preg_replace函数把[em:12]变为图片,但是还是显示[em:12]不显示图片!
希望各位高手指点一下!谢谢
------解决方案--------------------
/\[em:(\d+)\]/is
相关文章
相关视频
上一篇: php设计模式之单例、多例设计模式