diff options
Diffstat (limited to 'buildscripts/Benchmark/doc')
-rw-r--r-- | buildscripts/Benchmark/doc/timer_example.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/buildscripts/Benchmark/doc/timer_example.php b/buildscripts/Benchmark/doc/timer_example.php index 93dd05c6..ff9de936 100644 --- a/buildscripts/Benchmark/doc/timer_example.php +++ b/buildscripts/Benchmark/doc/timer_example.php @@ -1,18 +1,18 @@ -<?php
-require '../Timer.php';
-
-function wait($amount) {
- for ($i=0; $i < $amount; $i++) {
- for ($i=0; $i < 100; $i++);
- }
-}
-// Pass the param "true" to constructor to automatically display the results
-$timer = new Benchmark_Timer();
-$timer->start();
-wait(10);
-$timer->setMarker('Mark1');
-echo "Elapsed time between Start and Mark1: " .
- $timer->timeElapsed('Start', 'Mark1') . "\n";
-wait(50);
-$timer->stop();
-$timer->display();
+<?php +require '../Timer.php'; + +function wait($amount) { + for ($i=0; $i < $amount; $i++) { + for ($i=0; $i < 100; $i++); + } +} +// Pass the param "true" to constructor to automatically display the results +$timer = new Benchmark_Timer(); +$timer->start(); +wait(10); +$timer->setMarker('Mark1'); +echo "Elapsed time between Start and Mark1: " . + $timer->timeElapsed('Start', 'Mark1') . "\n"; +wait(50); +$timer->stop(); +$timer->display(); |