summaryrefslogtreecommitdiff
path: root/ext/spl/tests/heap_007.phpt
blob: 27bd66edf1d397138a200014a59c3cf6da530830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--TEST--
SPL: SplHeap: iteration through methods
--FILE--
<?php
$h = new SplMaxHeap();

$h->insert(1);
$h->insert(5);
$h->insert(0);
$h->insert(4);

$h->rewind();
echo "count(\$h) = ".count($h)."\n";
echo "\$h->count() = ".$h->count()."\n";

while ($h->valid()) {
    $k = $h->key();
    $v = $h->current();
    echo "$k=>$v\n";
    $h->next();
}
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
count($h) = 4
$h->count() = 4
3=>5
2=>4
1=>1
0=>0
===DONE===