首页 > 编程 > regex > 正文

PHP正则匹配图片并给图片加链接详解

2020-01-20 22:21:11
字体:
来源:转载
供稿:网友
正则:
复制代码 代码如下:
$newstext=preg_replace(preg_replace('/(<img[^>]+src/s*=/s*”?([^>"/s]+)”?[^>]*>)/im', ‘<a href=”$2″>$1</a>', $newstext);


解说:
1.preg_replace和str_replace的区别:

str_replace只是纯字符替换,而preg_replace才是正则替换

2.$0,$1,$2等的说明:

$0指的是被整个模式所匹配的文本;

$1指的是首个 ( ) 引用的串;

$2指的是第二个()引用的串; 以此类推。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表