用php實現遠程網(wǎng)絡文件下載到服務器
本文主要介紹如何用php程序實現將遠(yuǎn)程網(wǎng)絡文件下載到自己的主機(服務器、虛(xū)擬主機)上,當然也提供asp、asp.net的源碼(mǎ)給大家參考.
最近讓 Lc. 下載《汪洋中的一條船》這部感人(rén)的勵誌電視劇(jù),為了(le)分享方便,於是我提供一個(gè)Godaddy的免費FTP.
考慮(lǜ)到(dào)穩定(dìng)性和專(zhuān)一(yī)性(xìng),我想重新開啟一個godaddy的免費(fèi)空間,但是此時已經上傳了兩集,一共是400多兆.怎麽辦呢?
於(yú)是乎(hū)我(wǒ)想起(qǐ)了之前轉移空(kōng)間(jiān)時用(yòng)到的一個php文件,他可以下載遠程網絡文件到服務器上,也就是(shì)隻要(yào)是(shì)可以下載的url,就可以轉移到新的服務器上.
廢話(huà)不多說,直接(jiē)亮(liàng)出將遠程網絡文件下載(zǎi)到(dào)服務器的php源碼(mǎ)(測試通過(guò),很好很強(qiáng)大).
<form method="post"> <input name="url" size="50" /> <input name="submit" type="submit" /> </form> < ?php // maximum execution time in seconds set_time_limit (24 * 60 * 60); if (!isset($_POST['submit'])) die(); // folder to save downloaded files to. must end with slash $destination_folder = 'temp/'; $url = $_POST['url']; $newfname = $destination_folder . basename($url); $file = fopen ($url, "rb"); if ($file) { $newf = fopen ($newfname, "wb"); if ($newf) while(!feof($file)) { fwrite($newf, fread($file, 1024 * 8 ), 1024 * 8 ); } } if ($file) { fclose($file); } if ($newf) { fclose($newf); } ?> |
當然還需要展示下asp版本的(de)源碼(未測試)
< % function downfilea(d_target, s_target) On Error Resume Next dim myhttp, objstream set myhttp = server.createobject( "MSXML2.XMLHTTP ") myhttp.open "GET ", d_target, false myhttp.send() set objstream = Server.CreateObject( "adodb.stream ") objstream.Type = 1 objstream.Mode = 3 objstream.Open objstream.Write myhttp.responseBody objstream.SaveToFile s_target, 2 if err.number <> 0 then err.Clear end function downfilea "http://www.abc.com/xxx.rar ", Server.MapPath( "down/xxx.rar ") Response.write "ok " %> 還(hái)有asp.net版本的源(yuán)碼(mǎ)(未測試) using System; |
注意事項(xiàng):
1.相關的目錄可(kě)能需要(yào)建(jiàn)立,具體請看源碼.比如temp/、down/.
2.其中php版本的源碼是(shì)支持自定義url的,但(dàn)asp、asp.net版本的並沒有提供自定(dìng)義.
3.在拷貝大文(wén)件時,國內(nèi)估計支持欠佳.因為考(kǎo)慮(lǜ)到程序的超時時間,但在國外(wài)支持(chí)很好.
比(bǐ)如Blinux將一個近(jìn)300M的文件轉(zhuǎn)移到(dào)另一個服務器上耗費時間是28秒.這是(shì)國內(nèi)無法想象的.
最(zuì)後希(xī)望大(dà)家反饋下(xià)使(shǐ)用效果.
關鍵詞:php,服務器
閱讀本文後您(nín)有什麽感想? 已有 人給出評價!
- 1
- 2
- 1
- 1
- 1
- 1