Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Begrenzung paralleler/gleichzeitiger Downloads - Woher weiß ich, ob der Download abgebrochen wurde?

<?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();

sollte gut funktionieren. Keine Notwendigkeit für eine shutdown_function oder irgendeine funky selbstgebaute Verbindungsüberwachung.