如何使用php函数从img标签获取图像源。
答案 0 :(得分:8)
或者,您可以使用内置的DOM函数(如果使用PHP 5 +):
$doc = new DOMDocument();
$doc->loadHTMLFile($url);
$xpath = new DOMXpath($doc);
$imgs = $xpath->query("//img");
for ($i=0; $i < $imgs->length; $i++) {
$img = $imgs->item($i);
$src = $img->getAttribute("src");
// do something with $src
}
这使您不必使用外部类。
答案 1 :(得分:5)
考虑选择look at this。
我不确定这是否是一种可以解决问题的方法,但请查看此代码段:
// Create DOM from URL or file
$html = file_get_html('http://www.google.com/');
// Find all images
foreach($html->find('img') as $element)
echo $element->src . '<br>';
// Find all links
foreach($html->find('a') as $element)
echo $element->href . '<br>';
答案 2 :(得分:4)
您可以使用PHP Simple HTML DOM Parser(http://simplehtmldom.sourceforge.net/)
// Create DOM from URL or file
$html = file_get_html('http://www.google.com/');
// Find all images
foreach($html->find('img') as $element) {
echo $element->src.'<br>';
}
// Find all links
foreach($html->find('a') as $element) {
echo $element->href.'<br>';
}
答案 3 :(得分:1)
$path1 = 'http://example.com/index.html';//path of the html page
$file = file_get_contents($path1);
$dom = new DOMDocument;
@$dom->loadHTML($file);
$links = $dom->getElementsByTagName('img');
foreach ($links as $link)
{
$re = $link->getAttribute('src');
$a[] = $re;
}
<强>输出强>:
Array
(
[0] => demo/banner_31.png
[1] => demo/my_code.png
)