正则抓取土豆视频
如题. http://www.tudou.com/listplay/Icl7UAlbQZs/6YFO9qJvtts.html
求高手抓出此链接的视频地址
------解决方案--------------------
你只要用tudou的播放播放就会有广告。
------解决方案--------------------
$s=file_get_contents('http://www.tudou.com/listplay/Icl7UAlbQZs/6YFO9qJvtts.htm');<br /> preg_match_all('/iid:(\d+)\s+,kw:"(.*?)"\s+.*?icode:"(.*?)"/s',$s,$matches);<br /> <br /> foreach($matches[1] as $k=>$v){<br /> $name=iconv('GB2312','utf-8',$matches[2][$k]);<br /> echo "<a href='http://www.tudou.com/l/{$matches[3][$k]}/&iid={$matches[1][$k]}/v.swf'>$name</a><br />";<br /> }