Lines Matching refs:mb_strrpos
2 Test mb_strrpos() function : error conditions - pass incorrect number of args
6 function_exists('mb_strrpos') or die("skip mb_strrpos() is not available in this build");
10 /* Prototype : int mb_strrpos(string $haystack, string $needle [, int $offset [, string $encoding]…
16 * Pass mb_strrpos() an incorrect number of arguments
19 echo "*** Testing mb_strrpos() : error conditions ***\n";
22 //Test mb_strrpos with one more than the expected number of arguments
23 echo "\n-- Testing mb_strrpos() function with more than expected no. of arguments --\n";
29 var_dump( mb_strrpos($haystack, $needle, $offset, $encoding, $extra_arg) );
31 // Testing mb_strrpos with one less than the expected number of arguments
32 echo "\n-- Testing mb_strrpos() function with less than expected no. of arguments --\n";
34 var_dump( mb_strrpos($haystack) );
39 *** Testing mb_strrpos() : error conditions ***
41 -- Testing mb_strrpos() function with more than expected no. of arguments --
43 Warning: mb_strrpos() expects at most 4 parameters, 5 given in %s on line %d
46 -- Testing mb_strrpos() function with less than expected no. of arguments --
48 Warning: mb_strrpos() expects at least 2 parameters, 1 given in %s on line %d