benchmark.php 781 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php namespace System;
  2. class Benchmark {
  3. /**
  4. * Benchmark starting times.
  5. *
  6. * @var array
  7. */
  8. public static $marks = array();
  9. /**
  10. * Start a benchmark.
  11. *
  12. * @param string $name
  13. * @return void
  14. */
  15. public static function start($name)
  16. {
  17. static::$marks[$name] = microtime(true);
  18. }
  19. /**
  20. * Get the elapsed time in milliseconds since starting a benchmark.
  21. *
  22. * @param string $name
  23. * @return float
  24. */
  25. public static function check($name)
  26. {
  27. return (array_key_exists($name, static::$marks)) ? number_format((microtime(true) - static::$marks[$name]) * 1000, 2) : 0.0;
  28. }
  29. /**
  30. * Get the total memory usage in megabytes.
  31. *
  32. * @return float
  33. */
  34. public static function memory()
  35. {
  36. return number_format(memory_get_usage() / 1024 / 1024, 2);
  37. }
  38. }