首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

使用preg_replace函数不能实现功能,该如何处理

2012-06-03 
使用preg_replace函数不能实现功能$V_Content preg_replace(/\[em:(\d+):]/is, img src\images/fa

使用preg_replace函数不能实现功能
$V_Content = preg_replace("/\[em:(\d+):]/is", "<img src=\"images/face/\\1.gif\">", $row['V_Content']);
 $V_Content = preg_replace("/\<br.*?\>/is", ' ', $V_Content);

 使用preg_replace函数把[em:12]变为图片,但是还是显示[em:12]不显示图片!

希望各位高手指点一下!谢谢

[解决办法]
/\[em:(\d+)\]/is

热点排行