Lines Matching refs:strrev
2 Test strrev() function : error conditions
5 /* Prototype : string strrev(string $str);
10 echo "*** Testing strrev() : error conditions ***\n";
11 echo "-- Testing strrev() function with Zero arguments --";
12 var_dump( strrev() );
14 echo "\n-- Testing strrev() function with more than expected no. of arguments --";
15 var_dump( strrev("string", 'extra_arg') );
19 *** Testing strrev() : error conditions ***
20 -- Testing strrev() function with Zero arguments --
21 Warning: strrev() expects exactly 1 parameter, 0 given in %s on line %d
24 -- Testing strrev() function with more than expected no. of arguments --
25 Warning: strrev() expects exactly 1 parameter, 2 given in %s on line %d