[PHP] pobierz, plaintext <?php class timer{ function __construct() { $this->start = microtime( true ); } function __destruct() { echo microtime( true ) - $this->start; }}$time = new timer(); //start zegara ?>[PHP] pobierz, plaintext