Szukałem na sieci jakiegos benchamrk'u dla php i znalazłem to, ale nie wiem czy jest dobry.
poniżej zamieszczam kod
<?php /* php Performance Benchmark Script Copyright 2003 php Consulting There are two settings: First, set $file to be the server and page that you want to benchmark. Secondly, set $iter to be the number of times you want it loaded. */ $file = "http://localhost/strona.php"; $iter = 100; function getmtime() { return(double) $a[0] + $a[1]; } for ($i = 0; $i < $iter; $i++) { $start = getmtime(); $loadtime += getmtime() - $start ; $intertime = getmtime() - $start ; $avgload = $loadtime / $iter; } ?>
Z góry dzięki za odpowiedź.