目录

PHP strrev() 函数

❮ PHP 字符串参考

示例

反转字符串"Hello World!":

<?php
echo strrev("Hello World!");
?>
亲自试一试 »

定义和用法

strrev() 函数反转字符串。


语法

strrev( string)

参数值

Parameter Description
string Required. Specifies the string to reverse

技术细节

返回值: 返回反转后的字符串
PHP 版本: 4+

❮ PHP 字符串参考