Imdb Grabber指导

时间:2013-09-15 19:14:57

标签: php

需要一些帮助。

我有一个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>

请帮助我一些人。

1 个答案:

答案 0 :(得分:-1)

使用正则表达式和preg_match来完成您的工作:)