IT猫扑网:您身边最放心的安全下载站! 最新更新|软件分类|软件专题|手机版|论坛转贴|软件发布

您当前所在位置:首页网络编程PHP编程 → php实现将远程文件下载保存到服务器指定文件夹

php实现将远程文件下载保存到服务器指定文件夹

时间:2015/6/28来源:IT猫扑网作者:网管联盟我要评论(0)

直接上代码啦..

  1.       
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
  3. <html xmlns="https://www.w3.org/1999/xhtml" lang="zh-cn">   
  4. <head>   
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />   
  6. <meta http-equiv="Content-Language" content="UTF-8" />   
  7. </head>   
  8. <form method="post">   
  9. <input name="url" size="20" />   
  10. <input name="submit" type="submit" />   
  11. <!-- <input type="hidden" name="MAX_FILE_SIZE" value="2097152" />-->   
  12. </form>   
  13. <?php   
  14. set_time_limit (24 * 60 * 60);   
  15. if (!isset($_POST['submit'])) die();   
  16. $destination_folder = './downfolde/';   // 文件夹保存下载文件。必须以斜杠结尾   
  17. $url = $_POST['url'];   
  18. $newfname = $destination_folder . basename($url);   
  19. $file = fopen ($url"rb");   
  20. if ($file) {   
  21. $newf = fopen ($newfname"wb");   
  22. if ($newf)   
  23. while(!feof($file)) {   
  24. fwrite($newffread($file, 1024 * 8 ), 1024 * 8 );   
  25. }   
  26. }   
  27. if ($file) {   
  28. fclose($file);   
  29. }   
  30. if ($newf) {   
  31. fclose($newf);   
  32. }   
  33. ?>    

关键词标签:服务器 指定 文件夹 保

相关阅读

文章评论
发表评论

热门文章 plsql developer怎么连接数据库-plsql deveplsql developer怎么连接数据库-plsql deve2021年最好用的10款php开发工具推荐2021年最好用的10款php开发工具推荐在 PHP 中使用命令行工具在 PHP 中使用命令行工具php应用程序安全防范技术研究php应用程序安全防范技术研究

相关下载

人气排行 详解ucenter原理及第三方应用程序整合思路、方法PHP中防止SQL注入攻击PHP会话Session的具体使用方法解析PHP运行出现Notice : Use of undefined constant 的解决办法CakePHP程序员必须知道的21条技巧PHP如何清空mySQL数据库PHP采集图片实例(PHP采集)plsql developer怎么连接数据库-plsql developer连接数据库方法