WordPressを読む 80 /blog/wp-content/plugins/crayon-syntax-highlighter/util/crayon_timer.class.php
/blog/wp-content/plugins/crayon-syntax-highlighter/util/crayon_timer.class.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?php /* Used to measure execution time */ class CrayonTimer { const NO_SET = -1; private $start_time = self::NO_SET; function __construct() {} public function start() { $this->start_time = microtime(true); } public function stop() { if ($this->start_time != self::NO_SET) { $end_time = microtime(true) - $this->start_time; $this->start_time = self::NO_SET; return $end_time; } else { return 0; } } } ?> |