PHP编写一个函数,convert()。

2024年11月22日 05:14
有2个网友回答
网友(1):

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);
?>

网友(2):

直接调用函数:strrev(string)