0

需要一点帮助。

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

请有人帮帮我。

4

1 回答 1

-1

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

于 2013-09-15T19:32:13.577 回答