benchmark.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php namespace System;
  2. class Benchmark {
  3. /**
  4. * All of the benchmark starting times.
  5. *
  6. * @var array
  7. */
  8. public static $marks = array();
  9. /**
  10. * Start a benchmark.
  11. *
  12. * After starting a benchmark, the elapsed time in milliseconds can be
  13. * retrieved using the "check" method.
  14. *
  15. * <code>
  16. * Benchmark::start('name');
  17. * </code>
  18. *
  19. * @param string $name
  20. * @return void
  21. * @see check
  22. */
  23. public static function start($name)
  24. {
  25. static::$marks[$name] = microtime(true);
  26. }
  27. /**
  28. * Get the elapsed time in milliseconds since starting a benchmark.
  29. *
  30. * <code>
  31. * echo Benchmark::check('name');
  32. * </code>
  33. *
  34. * @param string $name
  35. * @return float
  36. * @see start
  37. */
  38. public static function check($name)
  39. {
  40. if (array_key_exists($name, static::$marks))
  41. {
  42. return number_format((microtime(true) - static::$marks[$name]) * 1000, 2);
  43. }
  44. return 0.0;
  45. }
  46. /**
  47. * Get the total memory usage in megabytes.
  48. *
  49. * @return float
  50. */
  51. public static function memory()
  52. {
  53. return number_format(memory_get_usage() / 1024 / 1024, 2);
  54. }
  55. }