Lines Matching refs:COUNT_NORMAL
6 * in default, COUNT_NORMAL and COUNT_RECURSIVE modes.
18 echo "-- Testing sizeof() with integer array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --\n";
22 echo "COUNT_NORMAL mode: ";
23 var_dump( sizeof($int_array, COUNT_NORMAL) );
29 echo "-- Testing sizeof() with string array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --\n";
33 echo "COUNT_NORMAL mode: ";
34 var_dump( sizeof($string_array, COUNT_NORMAL) );
40 echo "-- Testing sizeof() with indexed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --\n";
44 echo "COUNT_NORMAL mode: ";
45 var_dump( sizeof($indexed_array, COUNT_NORMAL) );
51 echo "-- Testing sizeof() with mixed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --\n";
55 echo "COUNT_NORMAL mode: ";
56 var_dump( sizeof($mixed_array, COUNT_NORMAL) );
65 -- Testing sizeof() with integer array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
68 COUNT_NORMAL mode: int(4)
72 -- Testing sizeof() with string array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
75 COUNT_NORMAL mode: int(3)
79 -- Testing sizeof() with indexed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
82 COUNT_NORMAL mode: int(3)
86 -- Testing sizeof() with mixed array in default, COUNT_NORMAL, COUNT_RECURSIVE modes --
89 COUNT_NORMAL mode: int(5)