PHP用curl可以轻松实现下载远程文件到指定目录:

<?php

class Download
{
public static function get($url, $file)
{
return file_put_contents($file, file_get_contents($url));
} public static function curlGet($url, $file)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$file_content = curl_exec($ch);
curl_close($ch);
$downloaded_file = fopen($file, 'w');
fwrite($downloaded_file, $file_content);
fclose($downloaded_file);
} public static function openGet($url, $file)
{
$in = fopen($url, "rb");
$out = fopen($file, "wb");
while ($chunk = fread($in,8192))
{
fwrite($out, $chunk, 8192);
}
fclose($in);
fclose($out);
} /**
*
* 创建目录,支持递归创建目录
* @param String $dirName 要创建的目录
* @param int $mode 目录权限
*/
public static function smkdir($dirName , $mode = 0777) { $dirs = explode('/' , str_replace('\\' , '/' , $dirName));
$dir = ''; foreach ($dirs as $part) {
$dir.=$part . '/';
if ( ! is_dir($dir) && strlen($dir) > 0) {
if ( ! mkdir($dir , $mode)) {
return false;
}
if ( ! chmod($dir , $mode)) {
return false;
}
}
}
return true;
}
}

转自:https://www.awaimai.com/2105.html

关注微信公众号:lovephp

最新文章

  1. occ添加新的捕捉模式
  2. c# ref 的作用
  3. NBUT 1457 Sona(莫队算法+离散化)
  4. I.MX6 Android iperf3 porting failed
  5. 数据结构(Splay平衡树):HAOI2008 排名系统
  6. Android 物理按键
  7. 射频识别技术漫谈(16)——Mifare UltraLight
  8. 【QT相关】对话框相关
  9. JAVA-Servlet-ServletConfig 与 ServletContext 的区别
  10. EularProject 43: 带条件约束的排列组合挑选问题
  11. 【java】计算一段代码执行时长java.lang.System类里的public static long currentTimeMillis()方法
  12. android程序崩溃后重启
  13. 全卷积网络 FCN 详解
  14. React前端框架路由跳转,前端回车事件、禁止空格、提交方式等方法
  15. 微信小程序tab切换,可滑动切换,导航栏跟随滚动实现
  16. 印刷行业合版BOM全阶维护示例
  17. 简述 OAuth 2.0 的运作流程(转)
  18. linux以16进制方式查看文件
  19. (简单匹配)Card Game Cheater -- hdu --1528
  20. Package 设计3:数据源的提取和使用暂存

热门文章

  1. Unity C# 用枚举(enum)制作复选框
  2. 日期API
  3. (生产)js-base64 - 转码
  4. 转:用AutoCAD 系统变量编程
  5. Struts2_HelloWorld_5
  6. 进一步了解this和super
  7. Azure进阶攻略 | VS2015和Azure,想要在一起其实很容易
  8. 用户管理的设计--4.jquery的ajax实现登录名的校验
  9. SINAMICS S120 Parking axis设置,安转拆除或屏蔽电机
  10. 腾讯云、CloudXNS域名服务器