Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/assets/_core/php/examples/other/ |
Upload File : |
<?php require_once('../qcubed.inc.php'); ?> <?php require('../includes/header.inc.php'); ?> <div id="instructions"> <h1>Measuring Performance using QTimer</h1> <p>If you ever need to do light-weight profiling of your QCubed application, you might find the <strong>QTimer</strong> class useful. It's really simple: you can start a named timer by doing <em>QTimer::start('timerName')</em>; you can stop it; you can restart the timer later if you want to. When you're done measuring a section of your code, just call <em>QTimer::getTime('timerName')</em>. If you had several timers running, an easy way to dump all the interesting debug info is to call <em>QTimer::varDump().</em></p> <p>Each of the timers is internall maintained as a QTimer object. If you want to know more about the timers - for example, the number of times the timer was started - you can get the QTimer object instance, and then interrogating that instance:<br> <pre><code>$objTimer = QTimer::GetTimer('timerName'); echo $objTimer->CountStarted;</code></pre> <p>Take a look at a sample usage example below by clicking View Source.</p> </div> <div id="demoZone"> <?php QTimer::start('longCalculation'); for ($i = 0; $i < 1000000; $i++) { // do nothing - just loop a bunch of times } QTimer::stop('longCalculation'); echo "Here's how long it took to execute the long calculation: " . QTimer::getTime('longCalculation') . "<br /><br />"; QTimer::start('loadPersons'); $arrPersons = Person::LoadAll(); QTimer::stop('loadPersons'); // resume the long calculation timer QTimer::start('longCalculation'); for ($i = 0; $i < 1000000; $i++) { // do nothing - just loop a bunch of times } QTimer::stop('longCalculation'); echo "<strong>Results of QTimer::varDump():</strong><br>"; QTimer::varDump(); ?> </div> <?php require('../includes/footer.inc.php'); ?>