nattreid/downloader

Nette 框架的下载器

1.1.1 2017-09-14 08:29 UTC

This package is auto-updated.

Last update: 2024-09-08 23:24:01 UTC


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'
    ]);
}