From 4b9c62980599228f070b401c7673dce8085b0c61 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Fri, 1 Jul 2011 17:40:48 -0500 Subject: backed out 648b42a75739, which was a NON-trivial whitespace commit. It broke the Typography class's string replacements, for instance --- user_guide/libraries/benchmark.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/libraries/benchmark.html') diff --git a/user_guide/libraries/benchmark.html b/user_guide/libraries/benchmark.html index 4dadf6b83..c29acb7b2 100644 --- a/user_guide/libraries/benchmark.html +++ b/user_guide/libraries/benchmark.html @@ -83,7 +83,7 @@ timing of the entire system execution to be shown.

Using the Benchmark Class

-

The Benchmark class can be used within your controllers, views, or your models. The process for usage is this:

+

The Benchmark class can be used within your controllers, views, or your models. The process for usage is this:

  1. Mark a start point
  2. @@ -101,7 +101,7 @@ $this->benchmark->mark('code_end');

    echo $this->benchmark->elapsed_time('code_start', 'code_end'); -

    Note: The words "code_start" and "code_end" are arbitrary. They are simply words used to set two markers. You can +

    Note: The words "code_start" and "code_end" are arbitrary. They are simply words used to set two markers. You can use any words you want, and you can set multiple sets of markers. Consider this example:

    $this->benchmark->mark('dog');
    @@ -154,8 +154,8 @@ is sent to the browser, simply place this in one of your view templates:

    <?php echo $this->benchmark->elapsed_time();?>

    You'll notice that it's the same function used in the examples above to calculate the time between two point, except you are -not using any parameters. When the parameters are absent, CodeIgniter does not stop the benchmark until right before the final -output is sent to the browser. It doesn't matter where you use the function call, the timer will continue to run until the very end.

    +not using any parameters. When the parameters are absent, CodeIgniter does not stop the benchmark until right before the final +output is sent to the browser. It doesn't matter where you use the function call, the timer will continue to run until the very end.

    An alternate way to show your elapsed time in your view files is to use this pseudo-variable, if you prefer not to use the pure PHP:

    {elapsed_time} -- cgit v1.2.3-24-g4f1b