everydaycode

第三期:php下载百度网盘文件

每日代码汇第三期:php下载百度网盘文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$canshu=$_SERVER["QUERY_STRING"];
if($canshu=="")
 {
 die("文件不存在");
 }
else
{
$wangzhi="http://pan.baidu.com/share/link?".$canshu;
$file=file_get_contents($wangzhi);
$pattern='/a><a class="dbtn cancel singledbtn" href=(.*?)id="downFileButtom">/i';
preg_match_all($pattern,$file,$result);
$tempurl=implode("",$result[1]);
$fileurlt=str_replace("\"","",$tempurl);
$fileurl=str_replace("&amp;","&",$fileurlt);
header("location:$fileurl");
}
?>
</a>

图例:

来源:http://www.oschina.net/code/snippet_586126_17325(oschina.net)

生产:╭ァの修罗

主页:http://my.oschina.net/u/586126

分享到:

1 条评论

昵称
  1. 梦月酱

    来自西德君的文章