I'm trying to work out how to use the profiler with the command line linux client, but cannot find any documentation on it. Can somebody point me to where how to do this is described?
I've managed to figure out a small amount, and have got some output from the profiler into my resulting page. The output looks like this:
Array
(
[mod_no] => Array
(
[0] => 1
[1] => 1
[2] => 1
[3] => 1
)
[line_no] => Array
(
[0] => 5
[1] => 6
[2] => 7
[3] => 8
)
[hit_count] => Array
(
[0] => 1
[1] => 1
[2] => 1
[3] => 1
)
[tm_max] => Array
(
[0] => 0.000184
[1] => 1.7E-05
[2] => 3.2E-05
[3] => 8E-06
)
[tm_min] => Array
(
[0] => 0.000184
[1] => 1.7E-05
[2] => 3.2E-05
[3] => 8E-06
)
[tm_sum] => Array
(
[0] => 0.000184
[1] => 1.7E-05
[2] => 3.2E-05
[3] => 8E-06
)
) |
Unfortunately I have no idea what this means. And there doesn't seem to be anywhere near enough information here for it to be a line-by-line profile of my script, which has over 2,000 lines of code executed to produce the page that this was extracted from.
Any help would be appreciated.