Mysql
 sql >> Base de données >  >> RDS >> Mysql

Limitation des téléchargements parallèles/simultanés - Comment savoir si le téléchargement a été annulé ?

<?php

class DownloadObserver
{
  protected $file;
  public function __construct($file) {
    $this->file = $file;
  }

  public function send() {
    // -> note in DB you've started
    readfile($this->file);
  }

  public function __destruct() {
    // download is done, either completed or aborted
    $aborted = connection_aborted();
    // -> note in DB
  }
}

$dl = new DownloadObserver("/tmp/whatever");
$dl->send();

devrait fonctionner très bien. Pas besoin d'une fonction shutdown_function ou d'une observation de connexion géniale auto-construite.