Lines Matching refs:spliti
2 Test spliti() function : error conditions - wrong number of args
5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
6 * Description: spliti string into array by regular expression
11 echo "*** Testing spliti() : error conditions - wrong number of args ***\n";
14 //Test spliti with one more than the expected number of arguments
15 echo "\n-- Testing spliti() function with more than expected no. of arguments --\n";
20 var_dump( spliti($pattern, $string, $limit, $extra_arg) );
22 // Testing spliti with one less than the expected number of arguments
23 echo "\n-- Testing spliti() function with less than expected no. of arguments --\n";
25 var_dump( spliti($pattern) );
30 *** Testing spliti() : error conditions - wrong number of args ***
32 -- Testing spliti() function with more than expected no. of arguments --
34 Deprecated: Function spliti() is deprecated in %s on line %d
36 Warning: spliti() expects at most 3 parameters, 4 given in %s on line %d
39 -- Testing spliti() function with less than expected no. of arguments --
41 Deprecated: Function spliti() is deprecated in %s on line %d
43 Warning: spliti() expects at least 2 parameters, 1 given in %s on line %d