少し助けが必要です。
たとえば、サイトから特定の詳細を取得する Imdb グラバーがあります。
このコード
$ps = $dom->getElementsByTagName('p');
for($i=0;$i<$ps->length;$i++){
$itemprop = $ps->item($i)->getAttribute("itemprop");
if ($itemprop=="description"){
$tmp = explode("See full summary",$ps->item($i)->textContent);
$tmp = explode("See full synopsis",$tmp[0]);
$res['summary'] = trim($tmp[0]);
break;
}
}
これから imdb.com の説明を取得します
<p itemprop="description"> description would be here </p>
説明のように、これからリリース日を取得するにはどうすればよいですか
<span class="nobr">
<a href="/title/tt2404311/releaseinfo?ref_=tt_ov_inf " title="See all release dates"> 13 September 2013<meta itemprop="datePublished" content="2013-09-13">(USA)
</a>
</span>
助けてください。