Skip to content

Instantly share code, notes, and snippets.

View dandyraka's full-sized avatar
🚶‍♂️
Lontang lantung

Dandy Raka dandyraka

🚶‍♂️
Lontang lantung
View GitHub Profile
@dandyraka
dandyraka / download.php
Created December 20, 2021 09:49 — forked from nicklasos/download.php
Curl PHP multiple files downloading
<?php
function multiple_download(array $urls, $save_path = '/tmp')
{
$multi_handle = curl_multi_init();
$file_pointers = [];
$curl_handles = [];
// Add curl multi handles, one per file we don't already have
foreach ($urls as $key => $url) {