IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁網(wǎng)絡(luò)編程PHP編程 → php實(shí)現(xiàn)將遠(yuǎn)程文件下載保存到服務(wù)器指定文件夾

php實(shí)現(xiàn)將遠(yuǎn)程文件下載保存到服務(wù)器指定文件夾

時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

直接上代碼啦..

  1. ???? ?
  2. "-//W3C//DTD?XHTML?1.0?Transitional//EN"?"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">? ?
  3. "http://www.w3.org/1999/xhtml"?lang="zh-cn">? ?
  4. ? ?
  5. "Content-Type"?content="text/html;?charset=UTF-8"?/>? ?
  6. "Content-Language"?content="UTF-8"?/>? ?
  7. ? ?
  8. "post">? ?
  9. "url"?size="20"?/>? ?
  10. "submit"?type="submit"?/>? ?
  11. ? ?
  12. ? ?
  13. set_time_limit?(24?*?60?*?60);? ?
  14. if?(!isset($_POST['submit']))?die();? ?
  15. $destination_folder?=?'./downfolde/';???//?文件夾保存下載文件。必須以斜杠結(jié)尾? ?
  16. $url?=?$_POST['url'];? ?
  17. $newfname?=?$destination_folder?.?basename($url);? ?
  18. $file?=?fopen?($url,?"rb");? ?
  19. if?($file)?{? ?
  20. $newf?=?fopen?($newfname,?"wb");? ?
  21. if?($newf)? ?
  22. while(!feof($file))?{? ?
  23. fwrite($newf,?fread($file,?1024?*?8?),?1024?*?8?);? ?
  24. }? ?
  25. }? ?
  26. if?($file)?{? ?
  27. fclose($file);? ?
  28. }? ?
  29. if?($newf)?{? ?
  30. fclose($newf);? ?
  31. }? ?
  32. ?>????

關(guān)鍵詞標(biāo)簽:服務(wù)器 指定 文件夾 保

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具 在 PHP 中使用命令行工具

相關(guān)下載

    人氣排行 詳解ucenter原理及第三方應(yīng)用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運(yùn)行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實(shí)例(PHP采集)