benchmark.php 965 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. * @param string $name
  16. * @return void
  17. * @see check
  18. */
  19. public static function start($name)
  20. {
  21. static::$marks[$name] = microtime(true);
  22. }
  23. /**
  24. * Get the elapsed time in milliseconds since starting a benchmark.
  25. *
  26. * @param string $name
  27. * @return float
  28. * @see start
  29. */
  30. public static function check($name)
  31. {
  32. if (array_key_exists($name, static::$marks))
  33. {
  34. return number_format((microtime(true) - static::$marks[$name]) * 1000, 2);
  35. }
  36. return 0.0;
  37. }
  38. /**
  39. * Get the total memory usage in megabytes.
  40. *
  41. * @return float
  42. */
  43. public static function memory()
  44. {
  45. return number_format(memory_get_usage() / 1024 / 1024, 2);
  46. }
  47. }