nattreid / downloader
Nette 框架的下载器
1.1.1
2017-09-14 08:29 UTC
Requires
- php: >= 7.1
- guzzlehttp/guzzle: ~6.2
- nette/di: ~2.4
- nette/safe-stream: ~2.3
- nette/utils: ~2.4
Requires (Dev)
- nette/tester: ~1.7
- tracy/tracy: ~2.4
README
config.neon中的设置
extensions: - NAttreid\Downloader\DI\DownloaderExtension
用法
/** @var \NAttreid\Downloader\IDownloaderFactory */ private $downloaderFactory; function download() { $downloader = $this->downloaderFactory->create(); $downloader->index = TRUE; // porovnava hlavicku stahnutych souboru s originaly a pokud se shoduji, nic nestahuje $downloader->download([ 'http://zdrojovaAdresa' => 'cilovySoubor' ]); }