hi there,
do anyone know a good php script performance tester? (free..)
thankyou
regards.
do anyone know a good php script performance tester? (free..)
thankyou
regards.
$i = 0;
while($i < 10000){
//do action 1
}
//return time
$i = 0;
while($i < 10000){
//do action 2
}
//return time
$timer = explode( ' ', microtime() ); $start = $timer[1] + $timer[0]; ***Your Code*** $timer = explode( ' ', microtime() ); echo( ($timer[1] + $timer[0])-$start );
Comment