Ejemplo n.º 1
0
 function download_file($file)
 {
     require_once INCLUDES . "class.httpdownload.php";
     ob_end_clean();
     $object = new PHPFusion\httpdownload();
     $object->set_byfile($file);
     $object->use_resume = TRUE;
     $object->download();
     exit;
 }