From ade3995a792b6603fbaf6c3c3456547266956ada Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 6 Mar 2006 09:58:01 +0000 Subject: [PATCH] Fixed compatibility with ext/hash --- Zend/bench.php | 6 +++--- 1 file 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); -- 2.40.0