Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.194.203
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
stopwatch /
Delete
Unzip
Name
Size
Permission
Date
Action
CHANGELOG.md
595
B
-rw-rw-r--
2022-02-18 16:06
LICENSE
1.04
KB
-rw-rw-r--
2022-02-18 16:06
README.md
925
B
-rw-rw-r--
2022-02-18 16:06
Section.php
3.91
KB
-rw-rw-r--
2022-02-18 16:06
Stopwatch.php
3.88
KB
-rw-rw-r--
2022-02-18 16:06
StopwatchEvent.php
5.5
KB
-rw-rw-r--
2022-02-18 16:06
StopwatchPeriod.php
1.92
KB
-rw-rw-r--
2022-02-18 16:06
composer.json
722
B
-rw-rw-r--
2022-02-18 16:06
Save
Rename
Stopwatch Component =================== The Stopwatch component provides a way to profile code. Getting Started --------------- ``` $ composer require symfony/stopwatch ``` ```php use Symfony\Component\Stopwatch\Stopwatch; $stopwatch = new Stopwatch(); // optionally group events into sections (e.g. phases of the execution) $stopwatch->openSection(); // starts event named 'eventName' $stopwatch->start('eventName'); // ... run your code here // optionally, start a new "lap" time $stopwatch->lap('foo'); // ... run your code here $event = $stopwatch->stop('eventName'); $stopwatch->stopSection('phase_1'); ``` Resources --------- * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony)