Login   Register  
PHP Classes
elePHPant
Icontem

File: example1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marek Szewczyk  >  Stoper  >  example1.php  >  Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: example no 1
Class: Stoper
Measure the time that a script takes to execute
Author: By
Last change: some small modifications due to changes in main class
Date: 2005-03-14 06:10
Size: 538 bytes
 

Contents

Class file image Download
<?php
include_once('class.stoper.php');
$s = new Stoper();

echo 
'starting...<br>';
$s->Start();

for (
$i 0$i 1000000$i++) {
    
$letter chr(rand(97122));
    
$digit  ord($letter);
}
echo 
$s->showResult('Million "for" loop: ').'<br>';

$arr = array(1216546515515651654654684651684554868);
for (
$i 0$i 1000000$i++) {
    
sort($arr);
    
rsort($arr);
}
echo 
$s->showResult('Million array sorting: ').'<br>';

$s->Stop();
echo 
$s->showResult('Full execution time: ').'<br>';
?>