请教如何用php提取图片url地址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请教如何用php提取图片url地址相关的知识,希望对你有一定的参考价值。
参考技术A 1楼的不太符合实际情况,$str='<p><img border="0" src="upfiles/2009/07/1246430143_1.jpg" alt=""/></p>';
$pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg]))[\'|\"].*?[\/]?>/";
preg_match_all($pattern,$str,$match);
print_r($match);
结果:
Array(
[0] => Array ( [0] => <img border="0" src="upfiles/2009/07/1246430143_1.jpg" alt=""/> )
[1] => Array ( [0] => upfiles/2009/07/1246430143_1.jpg )
)
直接获取图片 echo current($match[1]);本回答被提问者和网友采纳 参考技术B <?php
$text ='<a target="_blank" href="http://www.xxx.com/ddd.jpg">';
preg_match_all("/href\=\"(http:[\w\.\/]+\.[\w]+)\"/", $text,$arr);
var_dump($arr[1][0]);
//http://www.xxx.com/ddd.jpg?>
以上是关于请教如何用php提取图片url地址的主要内容,如果未能解决你的问题,请参考以下文章