欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

求解关于preg_replace函数解决思路

程序员文章站 2022-05-13 20:08:00
...
求解关于preg_replace函数
我想使用preg_replace函数把text里面的部分字符替换成图片
当我这样写时可以正常执行

$expression ="/@呲牙/";
$reexpression ="呲牙";
$text=preg_replace($expression,'求解关于preg_replace函数解决思路 ',$text);

可是当我改成数组后替换后图片的url都成了www.test.com/static/expression/Array.gif了

$expression =array("/@呲牙/","/@鄙视/","/@折磨/");
$reexpression =array("呲牙","鄙视","折磨");
$text=preg_replace($expression,'求解关于preg_replace函数解决思路 ',$text);

我刚接触php,希望大家能帮忙看一下

------解决方案--------------------
在执行函数前会先计算出参数的值。因此也就是:
$replace = '求解关于preg_replace函数解决思路 ';
$text = preg_replace($expression, $replace, $text);
// 由于 $reexpression 是个数组,因此数组和字符串相连就会是Array.gif

看你的需求,重新写一下:
$text = '别@呲牙了,->@鄙视
$reexpression =array("呲牙","鄙视","折磨");
// 希望你的程序最好以UTF-8编码,u修饰符的作用就是避免编码出现意外的混乱
$find = '#@('. join('
------解决方案--------------------
', $reexpression) .')#u';
$replace = '求解关于preg_replace函数解决思路';
$text = preg_replace($find, $replace, $text);

另外你的图片以中文命名,还需要注意可能在IE下产生的编码问题,导致图片加载404错误

附手册: http://php.net/preg-replace
求解关于preg_replace函数解决思路

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 求解关于preg_replace函数解决思路
  • 专题推荐