用strrev()函数可以反转字符串
function Descending(){
$str = 'Hello world! How are you!';
$result = strrev($str);
echo $result . '<br />';
}
还有其他方法如果比较好的可以贴出来
用strrev()函数可以反转字符串
function Descending(){
$str = 'Hello world! How are you!';
$result = strrev($str);
echo $result . '<br />';
}
还有其他方法如果比较好的可以贴出来
发表评论