from:独来读网 功能:挖出土豆网土豆视频FLV文件实际地址 演示:http://www.51du.cn/tudou.php PHP源码: 1<?2/*3e.g http://www.51du.cn/tudou.php4*/5ini_set("display_errors",0);6?>7<title>挖土豆-独来读网</title>8<form method="get" action="">土豆播放页地址:<input type="text" value="<? echo $q;?>" name="q" /><input type="submit" value="挖土豆喽!" /></form>9<?php10$q=urldecode($_GET['q']);11 if(!emptyempty($_GET['q'])) {12 htmlentities($_GET['q']);13 $html = file_get_contents($q);14 preg_match('/<TITLE>(.*?)- 视频/i',$html,$t);15 preg_match('/iid=(d+)/',$html,$m);15 collapsed lines16 $html=file_get_contents('http://www.tudou.com/player/v.php?id='.$m[1]);17 preg_match('/http:(.*?).flv/i',$html,$m);18 19 //$flv = $m[1];20 if (emptyempty($m[1])) {21 echo "挖不出来,如果输入的地址正确,请再挖挖!";22 }23 else {24 echo "<b>".$t[1]."</b>"."挖出来了,FLV地址是:<br />".$m[0];25 }26 }27 else {28 echo '请输入观看页面的网址:例如"http://www.tudou.com/programs/view/vZriVsqk-xc/"';29 }30?>