字符串转整数

 $int_max) return $int_max;
        if ($result < $int_min) return $int_min;

        return $result;
    }

    return 0;
}

$str = '+0023432423afdafsdfsf234324';
echo myAtoi($str);

你可能感兴趣的:(字符串转整数)