import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-array / sizeof_basic2.php.expectf
blob20dbc60505160118a98632b74537ad58cd96d088
1 *** Testing sizeof() : basic functionality ***
2 -- Testing sizeof() with integer array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
3 default mode: int(4)
5 COUNT_NORMAL mode: int(4)
7 COUNT_RECURSIVE mode: int(4)
9 -- Testing sizeof() with string array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
10 default mode: int(3)
12 COUNT_NORMAL mode: int(3)
14 COUNT_RECURSIVE mode: int(3)
16 -- Testing sizeof() with indexed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
17 default mode: int(3)
19 COUNT_NORMAL mode: int(3)
21 COUNT_RECURSIVE mode: int(3)
23 -- Testing sizeof() with mixed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
24 default mode: int(5)
26 COUNT_NORMAL mode: int(5)
28 COUNT_RECURSIVE mode: int(5)
29 Done