Lines Matching refs:array_flip
2 Test array_flip() function : error conditions
5 /* Prototype : array array_flip(array $input)
10 echo "*** Testing array_flip() : error conditions ***\n";
13 echo "-- Testing array_flip() function with Zero arguments --\n";
14 var_dump( array_flip() );
17 echo "-- Testing array_flip() function with more than expected no. of arguments --\n";
20 var_dump( array_flip($input, $extra_arg) );
25 *** Testing array_flip() : error conditions ***
26 -- Testing array_flip() function with Zero arguments --
28 Warning: array_flip() expects exactly 1 parameter, 0 given in %s on line %d
30 -- Testing array_flip() function with more than expected no. of arguments --
32 Warning: array_flip() expects exactly 1 parameter, 2 given in %s on line %d