Lines Matching refs:array_values
2 Test array_values() function
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
38 *** Testing array_values() with resource type ***
46 *** Testing array_values() with range checking ***
64 *** Testing array_values() on an array created on the fly ***