Example: Please output "abcde" as "edcba". It must be compiled using functions.
[php]
echo strrev("abcde");
//Output 'edcba'
http://www.bkjia.com/PHPjc/477790.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477790.htmlTechArticleExample: Please output abcde as edcba. It must be compiled using functions. [php] echo strrev(abcde ); //Output edcba...