/extension/tests/xhprof_004_require.php

http://github.com/preinheimer/xhprof · PHP · 28 lines · 9 code · 13 blank · 6 comment · 0 complexity · 2cae986a8f2b7aa2d93085dc2fb55122 MD5 · raw file

  1. <?php
  2. // This file is part of xhprof_004.phpt test.
  3. function bar() {
  4. echo "I am in bar()...\n";
  5. }
  6. // run some top-level code in this file.
  7. // The profiler should mark functions called from here as
  8. // children of the pseudo-function "run_init::<this_file_name>"
  9. // which represents the initialization block of a file.
  10. //
  11. $result1 = explode(" ", "abc def ghi");
  12. $result2 = implode(",", $result1);
  13. $result3 = strlen($result2);
  14. echo $result3 . "\n";
  15. bar();