background image

PHP 教程:百度网盘文件直链 PHP 代码

通过正则表达式获取百度网盘的文件真实地址,来实现直链的效果
百度网盘速度快,稳定性好,你值得拥有,如果以后支持直连以后就可以直接使用百度
的网盘了。

这里提供的是临时解决方案,不保证以后可以使用

将下面的代码保存为 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"); 

?>