benchmark.php 943 B

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