|
[ Autoren gesucht! ]
|
PHP-Homepage.de sucht laufend Autoren für News und Artikel
Interesse?
|
|
 |
|
[Start] [Suche] [Neue Einträge]
| PHP Benchmark | <?
/*************************************************
Script written by Detlef Tiggeler
2001-07-03
!! darauf achten das dateien
mit der prefix .php ausgeführt werden.
Homepage : http://www.solutions-for-the.net
email : dosul@ich-glaubs-ja.net
*************************************************/
$anzahl = 10;
$i = 1;
echo"<table width=70% border=0 cellpadding='2' cellspacing='2'>\n";
echo"<a href=\"http://www.solutions-for-the.net\"><img src=\"http://www.solutions-for-the.net\solutions.gif\" border=\"0\"></a>\n";
echo"<br /><font color='#330099'> Benchmark for PHP Installation</font><br />\n";
echo"<tr bgcolor='#D0D0D0'>\n";
echo"<th> Aufruf - Nr. </th>\n";
echo"<th>Ausführungszeit der Testfunktion</th>\n";
echo"</tr>\n";
while ($i<$anzahl +1) {
$t = test_func();
$time = $time +$t;
echo"<tr>\n";
echo"<td bgcolor='#E8E8E8'>$i</td>\n";
echo"<td bgcolor='#E8E8E8'>$t</td>\n";
echo"</tr>\n";
$i++;
}
$m_time=$time/$i;
echo"<tr>";
echo"<td bgcolor='#D0D0D0'>Mittelwert in sec.</td>\n";
echo"<td bgcolor='#D0D0D0'>$m_time</td>\n";
echo"</tr>\n";
echo"<tr><td><font color='#6633CC'> Alles im Bereich 0,3000000 bis 0,6000000 sec. im Mittelwert ist normal</td></tr>\n";
echo"</font>\n";
echo"</table>\n";
echo"<br /><font color=\"#660033\" face=\"Courier New, Courier, mono\">© 2001 by Detlef Tiggeler</font>";
function test_func() {
$start = microtime();
while ($i<100000) {
$w=$i*$i;
$i++;
}
$ende = microtime();
$arr_a = explode(" ",$start);
$arr_e = explode(" ",$ende);
$erg=$arr_e[1]+$arr_e[0] - ($arr_a[1]+$arr_a[0]);
return $erg;
}
?>
|
|