ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HeaderBasedDeliveryHelper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
40 {
46  protected function sendFileUnbufferedUsingHeaders(\Closure $closure): void
47  {
48  ignore_user_abort(true);
49  set_time_limit(0);
50  ob_start();
51 
52  $closure();
53 
54  ob_flush();
55  ob_end_flush();
56  flush();
57  }
58 }