One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
web
/
includes
/
domit
/
View File Name :
timer.php
<?php class Timer { var $startTime; var $stopTime; function start() { $this->startTime = microtime(); } //start function stop() { $this->stopTime = microtime(); } //stop function getTime() { return $this->elapsed($this->startTime, $this->stopTime); } //getTime function elapsed($a, $b) { list($a_micro, $a_int) = explode(' ',$a); list($b_micro, $b_int) = explode(' ',$b); if ($a_int > $b_int) { return ($a_int - $b_int) + ($a_micro - $b_micro); } else if ($a_int == $b_int) { if ($a_micro > $b_micro) { return ($a_int - $b_int) + ($a_micro - $b_micro); } else if ($a_micro<$b_micro) { return ($b_int - $a_int) + ($b_micro - $a_micro); } else { return 0; } } else { // $a_int < $b_int return ($b_int - $a_int) + ($b_micro - $a_micro); } } //elapsed } //Timer ?>