通过正则表达式获取百度网盘的文件真实地址来实现直链的效果适合一些使用外链的网站使用
<?php $canshu=$_SERVER["QUERY_STRING"]; if($canshu=="") { die("文件不存在"); } else { $wangzhi="$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[]); $fileurlt=str_replace("""""$tempurl); $fileurl=str_replace("&""&"$fileurlt); header("location:$fileurl"); } ?>
如效果