1、php自带函数strrev();可以反转字符串
2、这是一个自定义函数
function convert($str){ $ret=''; $len=strlen($str); for($i=0;$i<$len;$i++){ $ret=$str{$i}.$ret; } return $ret;}$str="abcedfsasfasf";echo $str;echo '';echo convert($str);?>
直接调用函数:strrev(string)