不使用系统函数,翻转字符串
更新:HHH   时间:2023-1-7



function fanzhuan($str){

for($temp = ' ', $i = strlen($str)-1;$i >=0 ; $i--){

        $temp .= substr($str,$i,1);

}


    return $temp;


}



返回web开发教程...