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