百度網盤速度快,穩定性好,你值得擁有,如果以後支持直連以後就可以直接使用百度的網盤了。
這裡提供的是臨時解決方案,不保證以後可以使用
將下面的代碼保存為downbd.php
復制代碼 代碼如下:
<?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("&","&",$fileurlt);
header("location:$fileurl");
}
?>
調用方法:
http://***/downbd.php?shareid=00000&uk=00000
主要是?shareid=00000&uk=00000這樣的格式