龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

php 百度网盘文件直链

时间:2014-09-15 12:13来源:网络整理 作者:网络 点击:
分享到:
百度网盘文件直链 学习PHP的产物,(*^__^*) ,通过正则表达式获取百度网盘的文件真实地址,来实现直链的效果,适合一些使用外链的网站使用。[代码片段(19行)]

学习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("&amp;","&",$fileurlt);
header("location:$fileurl");
}
?>
//该片段来自于http://outofmemory.cn
精彩图集

赞助商链接