PHP code example of amarkhai / parallel-downloader-bundle
1. Go to this page and download the library: Download amarkhai/parallel-downloader-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
amarkhai / parallel-downloader-bundle example snippets
public function __construct(DownloadManager $downloadManager)
{
$this->downloadManager = $downloadManager;
}
public function foo()
{
$this->downloadManager->download([
'filename1' => 'https://mysite.com/test1.png',
'filename2' => 'https://mysite.com/test2.png',
'filename3' => 'https://mysite.com/test3.png',
]);
}