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