ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
HeaderBasedDeliveryHelper.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
39trait HeaderBasedDeliveryHelper
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}