function fanzhuan($str){

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

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

}


    return $temp;


}