Skip to content

Instantly share code, notes, and snippets.

View dimaspante's full-sized avatar
🚀

Dimas Pante dimaspante

🚀
View GitHub Profile
@dimaspante
dimaspante / resumable-download.php
Created February 2, 2021 14:07 — forked from kosinix/resumable-download.php
PHP - resumable download
<?php
class ResumeDownload {
private $file;
private $name;
private $boundary;
private $delay = 0;
private $size = 0;
function __construct($file, $delay = 0) {
if (! is_file($file)) {