Lines Matching refs:explode
2 Test explode() function : error conditions
6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
11 echo "*** Testing explode() : error conditions ***\n";
13 echo "\n-- Testing explode() function with no arguments --\n";
14 var_dump( explode() );
16 echo "\n-- Testing explode() function with more than expected no. of arguments --\n";
21 var_dump( explode($delimiter, $string, $limit, $extra_arg) );
26 *** Testing explode() : error conditions ***
28 -- Testing explode() function with no arguments --
30 Warning: explode() expects at least 2 parameters, 0 given in %s on line %d
33 -- Testing explode() function with more than expected no. of arguments --
35 Warning: explode() expects at most 3 parameters, 4 given in %s on line %d