浏览文章

文章信息

php 读取所有html内的图片,php get all image link from html content 429

示例代码:

static function getImgs($content, $order = 'ALL')
{
$pattern = "/<img.*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png|\.webp|\.jpeg]))[\'|\"].*?[\/]?>/";
preg_match_all($pattern, $content, $match);
if (isset($match[1]) && !empty($match[1])) {
if ($order === 'ALL') {
return $match[1];
}
if (is_numeric($order) && isset($match[1][$order])) {
return $match[1][$order];
}
}
return '';
}

 

红色部分可以替换任意正则,获取其他内容。

 

 

原创