tapakan / image-downloader
PHP lib for download images from remote host
0.0.1
2016-09-22 09:49 UTC
Requires
- php: >=5.6
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is not auto-updated.
Last update: 2025-02-01 20:21:16 UTC
README
INSTALL
Add to require section
"require" : { "tapakan/image-downloader" : "0.0.1" }
EXAMPLES
require('vendor/autoload.php'); use Tapakan\ImageDownloader\Manager; $manager = new Manager(); $manager->getDownloader()->load('http://example.com/path_to_img'); $manager->getDownloader()->load([ 'http://example.com/path_to_img', 'http://example.com/path_to_img' ]); // Change destination folder $manager = new Manager([ 'dir' => __DIR__ ]); $manager->getDownloader()->load('http://example.com/path_to_img');