googleの画像検索結果のスクレイピング
googleの画像検索結果のスクレイピングがうまくいきません。
画像が動的に出力されているからでしょうか?
htmlsimpledomを使用しています。
以下がコードになります。
include 'simple_html_dom.php';
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$query = "ルンバ";
$html2 = file_get_html("https://www.google.co.jp/search?q=". $query . "&tbm=isch", false, stream_context_create($arrContextOptions));
$html2 = mb_convert_encoding($html2, 'utf8', 'auto');
$dom2 = str_get_html($html2);
//get category
$dataSrc='data-src';
$img = $dom2->find('img.rg_i',0);
var_dump($img);
詳しい方、ご教示下さい。宜しくお願い致します。