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