您好我想通过我的Torrent数据库的文件名从IMDB获取信息: 我使用此代码在使用IMDB URL时效果很好。但我想使用我的torrent文件名获取信息,这里是代码:
$oIMDB=new IMDB('http://www.imdb.com/title/tt1022603/');
if ($oIMDB->isReady) {
echo'<p><img src="' . $oIMDB->getPoster() .'" style="width:100px;height:50px;float:left;margin:4px 10px 10px 0;"></p>';
echo'<p>Url: <b><a href="' . $oIMDB->getUrl() .'">' . $oIMDB->getUrl() .'</a></b></p>';
echo'<p>Plot: <b>' . $oIMDB->getPlot() .'</b></p>';
echo'<p>MPAA: <b>' . $oIMDB->getMpaa() .'</b></p>';
echo'<p>Rating: <b>' . $oIMDB->getRating() .'</b></p>';
echo'<p>Release Date: <b>' . $oIMDB->getReleaseDate() .'</b></p>';
echo'<p>Runtime: <b>' . $oIMDB->getRuntime() .'</b></p>';
}
else {
echo'<p>Movie not found!</p>';
}
这是我用来获取我的种子名称的代码:
$shortname = CutName(htmlspecialchars($row["name"]), $char1);