uawdijnntqw1x1x1
IP : 216.73.216.136
Hostname : dhandapanilive
Kernel : Linux dhandapanilive 5.15.0-139-generic #149~20.04.1-Ubuntu SMP Wed Apr 16 08:29:56 UTC 2025 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
html
/
dhandapani
/
23f9c
/
..
/
vendor
/
phpunit
/
php-timer
/
src
/
Timer.php
/
/
<?php declare(strict_types=1); /* * This file is part of phpunit/php-timer. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Timer; final class Timer { /** * @psalm-var array<string,int> */ private const SIZES = [ 'GB' => 1073741824, 'MB' => 1048576, 'KB' => 1024, ]; /** * @psalm-var list<float> */ private static $startTimes = []; public static function start(): void { self::$startTimes[] = \hrtime(true) / 1000000000; } public static function stop(): float { return (\hrtime(true) / 1000000000) - \array_pop(self::$startTimes); } public static function bytesToString(float $bytes): string { foreach (self::SIZES as $unit => $value) { if ($bytes >= $value) { return \sprintf('%.2f %s', $bytes >= 1024 ? $bytes / $value : $bytes, $unit); } } return $bytes . ' byte' . ((int) $bytes !== 1 ? 's' : ''); } public static function secondsToShortTimeString(float $timeInSeconds): string { $integerFragments = self::timeInSecondsToFragments($timeInSeconds); $result = ''; if ($integerFragments['hours'] > 0) { $result = \sprintf('%02d', $integerFragments['hours']) . ':'; } $result .= \sprintf('%02d', $integerFragments['minutes']) . ':'; $result .= \sprintf('%02d', $integerFragments['seconds']); if ($integerFragments['milliseconds'] > 0) { $result .= '.' . \sprintf('%03d', $integerFragments['milliseconds']); } return $result; } public static function secondsToTimeString(float $timeInSeconds): string { $fragments = self::timeInSecondsToFragments($timeInSeconds); $result = []; if ($fragments['hours'] > 0) { if ($fragments['hours'] === 1) { $result[] = '1 hour'; } else { $result[] = $fragments['hours'] . ' hours'; } } if ($fragments['minutes'] > 0) { if ($fragments['minutes'] === 1) { $result[] = '1 minute'; } else { $result[] = $fragments['minutes'] . ' minutes'; } } if ($fragments['seconds'] > 0) { if ($fragments['seconds'] === 1) { $result[] = '1 second'; } else { $result[] = $fragments['seconds'] . ' seconds'; } } if ($fragments['milliseconds'] > 0) { if ($fragments['milliseconds'] === 1) { $result[] = '1 millisecond'; } else { $result[] = $fragments['milliseconds'] . ' milliseconds'; } } if (!empty($result)) { return \implode(', ', $result); } return '0 milliseconds'; } /** * @throws RuntimeException */ public static function timeSinceStartOfRequest(): string { if (!isset($_SERVER['REQUEST_TIME_FLOAT'])) { throw new RuntimeException( 'Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not available' ); } if (!\is_float($_SERVER['REQUEST_TIME_FLOAT'])) { throw new RuntimeException( 'Cannot determine time at which the request started because $_SERVER[\'REQUEST_TIME_FLOAT\'] is not of type float' ); } return self::secondsToShortTimeString(\microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']); } /** * @throws RuntimeException */ public static function resourceUsage(): string { return \sprintf( 'Time: %s, Memory: %s', self::timeSinceStartOfRequest(), self::bytesToString(\memory_get_peak_usage(true)) ); } /** * @psalm-return array<string,int> */ private static function timeInSecondsToFragments(float $timeInSeconds): array { $timeInMilliseconds = \round($timeInSeconds * 1000); $hours = \floor($timeInMilliseconds / 60 / 60 / 1000); $hoursInMilliseconds = $hours * 60 * 60 * 1000; $minutes = \floor($timeInMilliseconds / 60 / 1000) % 60; $minutesInMilliseconds = $minutes * 60 * 1000; $seconds = \floor(($timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds) / 1000); $secondsInMilliseconds = $seconds * 1000; $milliseconds = $timeInMilliseconds - $hoursInMilliseconds - $minutesInMilliseconds - $secondsInMilliseconds; return [ 'hours' => (int) $hours, 'minutes' => $minutes, 'seconds' => (int) $seconds, 'milliseconds' => (int) $milliseconds, ]; } }
/var/www/html/dhandapani/23f9c/../vendor/phpunit/php-timer/src/Timer.php