prepend_v4.php 429 B

123456789101112131415
  1. <?php
  2. tideways_enable(TIDEWAYS_FLAGS_MEMORY | TIDEWAYS_FLAGS_CPU);
  3. register_shutdown_function(
  4. function () {
  5. register_shutdown_function(function () {
  6. $data = tideways_disable();
  7. $name = 'xhprof_report.' . microtime(1) . '.serialized';
  8. echo 'Saving report to ' . $name, "\n";
  9. file_put_contents('/code/' . $name,
  10. serialize($data));
  11. });
  12. }
  13. );