Lines Matching refs:array_values
2 Test array_values() function (variation)
12 echo "\n*** Testing array_values() with resource type ***\n";
18 var_dump( array_values($arr_resource) );
20 echo "\n*** Testing array_values() with range checking ***\n";
30 var_dump( array_values($arr_range) );
32 echo "\n*** Testing array_values() on an array created on the fly ***\n";
33 var_dump( array_values(array(1,2,3)) );
34 var_dump( array_values(array()) ); // null array
39 *** Testing array_values() with resource type ***
47 *** Testing array_values() with range checking ***
65 *** Testing array_values() on an array created on the fly ***