如何擷取百度網盤儲存檔案直鏈下載(PHP版)·站內下載

來源:互聯網
上載者:User

百度網盤是百度推出的一項雲端儲存體服務,首次註冊即有機會獲得15GB的空間,目前有Web版、Windows用戶端、Android手機用戶端,使用者將可以輕鬆把自己的檔案上傳到網盤上,並可以跨終端隨時隨地查看和分享。

如何擷取百度網盤中儲存檔案的直鏈

第一步:將下列代碼儲存為 bdpan.php ,上傳到可用的空間,比如 SAE。

<?php   $url = 'http://pan.baidu.com/share/link?shareid=' . $_GET['shareid'] . '&uk='. $_GET["uk"];    $src = file_get_contents($url);//擷取下載頁面源碼   $pattern = '/<a class="new-dbtn"(.*?)href=(.*?) id="downFileButtom">/is';//匹配下載按鈕   preg_match_all($pattern, $src, $result);   $tempurl = implode("", $result[2]);//各種轉換   $fileurlt = str_replace("\"", "", $tempurl);//各種替換   $fileurl = str_replace("&amp;", "&", $fileurlt);   header("location:$fileurl");//Got it   ?>

第二步:將百度網盤儲存檔案的分享連結修改成直鏈形式。

百度網盤預設分享串連:

http://pan.baidu.com/share/link?shareid=1851818297&uk=4211979314

百度網盤檔案直鏈形式:

http://bdpan檔案目錄/bdpan.php?shareid=XXX&uk=YYY
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.