/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
- <?php
- // This file is part of xhprof_004.phpt test.
- function bar() {
- echo "I am in bar()...\n";
- }
- // run some top-level code in this file.
- // The profiler should mark functions called from here as
- // children of the pseudo-function "run_init::<this_file_name>"
- // which represents the initialization block of a file.
- //
- $result1 = explode(" ", "abc def ghi");
- $result2 = implode(",", $result1);
- $result3 = strlen($result2);
- echo $result3 . "\n";
- bar();