Lines Matching refs:urlencode
2 Test urlencode() function : error conditions
5 /* Prototype : proto string urlencode(string str)
13 echo "*** Testing urlencode() : error conditions ***\n";
16 echo "\n-- Testing urlencode() function with Zero arguments --\n";
17 var_dump( urlencode() );
19 //Test urlencode with one more than the expected number of arguments
20 echo "\n-- Testing urlencode() function with more than expected no. of arguments --\n";
23 var_dump( urlencode($str, $extra_arg) );
28 *** Testing urlencode() : error conditions ***
30 -- Testing urlencode() function with Zero arguments --
32 Warning: urlencode() expects exactly 1 parameter, 0 given in %s on line 14
35 -- Testing urlencode() function with more than expected no. of arguments --
37 Warning: urlencode() expects exactly 1 parameter, 2 given in %s on line 20