Lines Matching refs:strrev
2 Test strrev() function : basic functionality
5 /* Prototype : string strrev(string $str);
10 echo "*** Testing strrev() : basic functionality ***\n";
16 var_dump( strrev("Hello, World") );
17 var_dump( strrev('Hello, World') );
20 var_dump( strrev("H") );
21 var_dump( strrev('H') );
24 var_dump( strrev("HHHHHH") );
25 var_dump( strrev("HhhhhH") );
28 var_dump( strrev("Hello, World\n") );
29 var_dump( strrev('Hello, World\n') );
32 var_dump( strrev($heredoc) );
36 *** Testing strrev() : basic functionality ***