Skip to content

Commit

Permalink
Fixed compatibility with ext/hash
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Mar 6, 2006
1 parent e795f8f commit ade3995
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Zend/bench.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function fibo($n) {

/****/

function hash($n) {
function hash1($n) {
for ($i = 1; $i <= $n; $i++) {
$X[dechex($i)] = $i;
}
Expand Down Expand Up @@ -401,8 +401,8 @@ function total()
$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);
Expand Down

0 comments on commit ade3995

Please sign in to comment.