Changeset 654 for trunk/system/core/Benchmark.php
- Timestamp:
- 10/04/2007 10:03:56 PM (14 months ago)
- Files:
-
- 1 modified
-
trunk/system/core/Benchmark.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/Benchmark.php
r644 r654 60 60 } 61 61 62 /** 63 * Get the elapsed time for all benchmark points 64 * 65 * @access public 66 * @return array 67 */ 68 public static function get_all() 69 { 70 $benchmarks = array(); 71 foreach (self::$marks as $name => $times) 72 { 73 $benchmarks[$name] = self::get($name); 74 } 75 76 return $benchmarks; 77 } 78 62 79 } // End Benchmark Class
