php使用正则表达式获取图片url的方法
具体实现方法如下:
代码如下:
header("Content-type:text/html;charset=utf-8");
$str = '
';
$pattern = "/[img|IMG].*?src=['|\"](.*?(?:[.gif|.jpg]))['|\"].*?[\/]?>/";
preg_match_all($pattern,$str,$match);
echo "
Copier après la connexion
";
print_r($match);
?>