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

正则批量轮换

2013-03-16 
正则批量替换$str img srctest/aaa/a.jpg widht33 height3img srcf/aaa/a.jpg widht4 heigh

正则批量替换
$str ='<img src="test/aaa/a.jpg" widht=33 height=3><img src="f/aaa/a.jpg" widht=4 height=3>'

如何批量将src前面加个域名呢

$str ='<img src="http://xxxx.com/test/aaa/a.jpg" widht=33 height=3><img src="http://xxxx.com/f/aaa/a.jpg" widht=4 height=3>'
[解决办法]

引用:
引用:$str = '<img src="test/aaa/a.jpg" widht=33 height=3><img src="f/aaa/a.jpg" widht=4 height=3>';
$str = str_replace('src="', 'src="http://www.xxx.com/', $str);
echo $……


能不用则不用 这是原则...


$str = '<img src="test/aaa/a.jpg" widht=33 height=3><img src="f/aaa/a.jpg" widht=4 height=3>';
echo preg_replace('/(src=")/', "$1'http://www.xxx.com/", $str);

热点排行