Lines Matching refs:utf8_decode
2 Test utf8_decode() function : error conditions
11 /* Prototype : proto string utf8_decode(string data)
17 echo "*** Testing utf8_decode() : error conditions ***\n";
20 echo "\n-- Testing utf8_decode() function with Zero arguments --\n";
21 var_dump( utf8_decode() );
23 //Test utf8_decode with one more than the expected number of arguments
24 echo "\n-- Testing utf8_decode() function with more than expected no. of arguments --\n";
27 var_dump( utf8_decode($data, $extra_arg) );
32 *** Testing utf8_decode() : error conditions ***
34 -- Testing utf8_decode() function with Zero arguments --
36 Warning: utf8_decode() expects exactly 1 parameter, 0 given in %s on line %d
39 -- Testing utf8_decode() function with more than expected no. of arguments --
41 Warning: utf8_decode() expects exactly 1 parameter, 2 given in %s on line %d