diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-03-06 09:58:27 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-03-06 09:58:27 +0000 |
commit | bc091138a55fac15a81f3d0cc1153d6634075e73 (patch) | |
tree | 828cda49486c66a3a5031f1524743f0fdfa891c0 | |
parent | 1050956ad1c995412db1e11f34ec97bf0a2c83e7 (diff) | |
download | php-git-bc091138a55fac15a81f3d0cc1153d6634075e73.tar.gz |
fixed compatibility with ext/hash
-rw-r--r-- | Zend/bench.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/bench.php b/Zend/bench.php index 9f3f9c205b..f22704a7a7 100644 --- a/Zend/bench.php +++ b/Zend/bench.php @@ -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); |