jinas / sfddownloader
一个简单的类,用于下载通过URL传递的文件
v1.0.4
2019-09-18 07:56 UTC
Requires
- guzzlehttp/guzzle: ~6.0
This package is auto-updated.
Last update: 2024-09-19 22:20:05 UTC
README
一个简单的类,用于下载通过URL传递的文件
使用示例在example文件夹内提供。这个类最初是为了简单地下载我的个人项目的URL链接而创建的。代码可能有点粗糙。欢迎任何人改进它 :)
要安装
composer require jinas/sfddownloader
用法
<?php use Jinas\Downloader\Downloader; require_once '../vendor/autoload.php'; $download = new Downloader; //first param is the url and second param is the path to store the file $download->downloadfile('https://www.belightsoft.com/products/imagetricks/img/intro-video-poster@2x.jpg', './');