Lines Matching refs:utf8_encode
2 Test utf8_encode() function : error conditions
5 /* Prototype : proto string utf8_encode(string data)
11 echo "*** Testing utf8_encode() : error conditions ***\n";
14 echo "\n-- Testing utf8_encode() function with Zero arguments --\n";
15 var_dump( utf8_encode() );
17 //Test utf8_encode with one more than the expected number of arguments
18 echo "\n-- Testing utf8_encode() function with more than expected no. of arguments --\n";
21 var_dump( utf8_encode($data, $extra_arg) );
26 *** Testing utf8_encode() : error conditions ***
28 -- Testing utf8_encode() function with Zero arguments --
30 Warning: utf8_encode() expects exactly 1 parameter, 0 given in %s on line %d
33 -- Testing utf8_encode() function with more than expected no. of arguments --
35 Warning: utf8_encode() expects exactly 1 parameter, 2 given in %s on line %d