gpt4 book ai didi

php - 在 PHP 中实现 C 的 atoi()

转载 作者:可可西里 更新时间:2023-11-01 13:47:42 24 4
gpt4 key购买 nike

<分区>

C中有一个函数atoi(),用PHP实现;

  • $string = '5467';//函数应该以整数形式返回 5467

这就是我发现的(它在 C 中的实现)

int myatoi(const char *string) {
int i;
i=0;
while(*string) {
i = (i<<3) + (i<<1) + (*string - '0');
string++;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com