1

我正在尝试使用PHP从weather.com(当前状况图像)中提取图像,但我不知道该怎么做,因为图像会随着天气变化而变化,所以我无法直接链接到它. 有没有办法从标签中提取图像,所以当图像源更改时,PHP 会得到新的?

这是我希望 PHP 从中提取的标签:

<img class="wx-weather-icon" src="http://s.imwx.com/v.20120328.084208//img/wxicon/120/32.png" height="93" width="93" alt="Sunny">
4

1 回答 1

1

简单HTMLDOM

可能是您最好的选择,那么您可以继续执行以下操作

// Create DOM from URL or file
$html = file_get_html('http://www.weather.com/');

foreach($html->find('img[class=wx-weather-icon]') as $element) {
   echo $element->src;
}
于 2013-03-11T16:02:41.107 回答