summaryrefslogtreecommitdiff
path: root/Zend/bench.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/bench.php')
-rw-r--r--Zend/bench.php6
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);