http://www.bkjia.">
当前位置:Gxlcms > PHP教程 > php使用正则表达式获取图片url的方法_PHP教程

php使用正则表达式获取图片url的方法_PHP教程

时间:2021-07-01 10:21:17 帮助过:19人阅读

php使用正则表达式获取图片url的方法


具体实现方法如下:

代码如下:


header("Content-type:text/html;charset=utf-8");
$str = '

美女

';
$pattern = "/[img|IMG].*?src=['|\"](.*?(?:[.gif|.jpg]))['|\"].*?[\/]?>/";
preg_match_all($pattern,$str,$match);
echo "
";
print_r($match);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/944935.htmlTechArticlephp使用正则表达式获取图片url的方法 具体实现方法如下: 代码如下:

?php header(Content-type:text/html;charset=utf-8); $str = 'pimg src=https://www.gxlcms.com/images/11111111.jpg a...

人气教程排行