PageRenderTime 56ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/platform/flush.php

https://github.com/eshwarz/erp
PHP | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | ee324ab884c40c6a761ddf0efa0f9878 MD5 | raw file
  1. <?php
  2. function flush_buffers()
  3. {
  4. ob_end_flush();
  5. ob_flush();
  6. flush();
  7. ob_start();
  8. }
  9. ?>