(PHP 4, PHP 5, PHP 7)
strrev — 反转字符串
$string
返回 string 反转后的字符串。
string
待反转的原始字符串。
返回反转后的字符串。
Example #1 使用 strrev() 反转字符串
<?phpecho strrev("Hello world!"); // 输出 "!dlrow olleH"?>