芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/nunomaduro/collision/src/Adapters/Phpunit/Timer.php
start = $start; } /** * Starts the timer. */ public static function start(): Timer { return new self(microtime(true)); } /** * Returns the elapsed time in microseconds. */ public function result(): float { return microtime(true) - $this->start; } }