]> granicus.if.org Git - php/commitdiff
Fixed compatibility with ext/hash
authorDmitry Stogov <dmitry@php.net>
Mon, 6 Mar 2006 09:58:01 +0000 (09:58 +0000)
committerDmitry Stogov <dmitry@php.net>
Mon, 6 Mar 2006 09:58:01 +0000 (09:58 +0000)
Zend/bench.php

index 9f3f9c205b6e47469029b8cdaad5a14379fc1772..f22704a7a773e648e17699c7c5f4a8e75d06488f 100644 (file)
@@ -179,7 +179,7 @@ function fibo($n) {
 
 /****/
 
-function hash($n) {
+function hash1($n) {
   for ($i = 1; $i <= $n; $i++) {
     $X[dechex($i)] = $i;
   }
@@ -401,8 +401,8 @@ ary3(2000);
 $t = end_test($t, "ary3(2000)");
 fibo(30);
 $t = end_test($t, "fibo(30)");
-hash(50000);
-$t = end_test($t, "hash(50000)");
+hash1(50000);
+$t = end_test($t, "hash1(50000)");
 hash2(500);
 $t = end_test($t, "hash2(500)");
 heapsort(20000);