When I look at the Google News feed in XML format, I'm not able to tell how to get the thumbnail image urls. Does anyone know how?
$news = simplexml_load_file('https://news.google.com/news?output=rss&topic=n');
foreach($news->channel->item as $item) {
$title = $item->title . "\n";
$link = $item->link . "\n";
$pubDate = $item->pubDate . "\n";
$image = $item-> ????
echo $title . ' - ' . link . ' - ' . $image;
echo strip_tags($item->description) ."\n";
echo '<br><br>';
}