PHP String 参考手册
反转字符串 "Hello World!":
<?php echo strrev("Hello World!"); ?>
运行结果:
!dlroW olleH
strrev() 函数反转字符串。
strrev(string)