熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

百度網盤文件直鏈PHP代碼

2022-06-13   來源: PHP編程 

  通過正則表達式獲取百度網盤的文件真實地址來實現直鏈的效果適合一些使用外鏈的網站使用

  <?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("&amp;""&"$fileurlt); header("location:$fileurl"); } ?>

  如效果


From:http://tw.wingwit.com/Article/program/PHP/201311/21083.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.