Home>Article>Backend Development> How to replace image link in php
php替换图片链接的方法:1、打开相应的PHP代码文件;2、通过正则表达式“preg_replace("/()/is","\${1}asdf\${3}",$content);”替换即可。
本文操作环境:windows7系统、PHP7.1版、DELL G3电脑
php怎么替换图片链接?
PHP正则匹配替换图片地址:
网上能找到很多匹配图片src的正则表达式和替换的实例,都是然并卵,不能马上解决问题。
只是要找到src里的那一段给替换掉就行了。
给一段内容:
$content = '';
正则匹配替换:
preg_replace("/()/is","\${1}asdf\${3}",$content);
$content只要是一个a1f02c36ba31691bcfe87b2722de723b标签里的全部内容就可以,将src里的内容单独圈起来,前后的内容都整个的包括起来,${1}和${3}就是src的前后内容,将src替换成想要的就行。
推荐学习:《PHP视频教程》
The above is the detailed content of How to replace image link in php. For more information, please follow other related articles on the PHP Chinese website!