介紹
php字符串類型的數(shù)字如果想轉成整型的數(shù)字,一般我們都是采用系統(tǒng)內置的API去做轉換躲查,但如果規(guī)定就不讓我們去用系統(tǒng)內置的API轉換它浅,而是讓自己去實現(xiàn)一個函數(shù)轉換該怎么辦镣煮?這里我們看下如何去實現(xiàn)姐霍。
系統(tǒng)內置 API 方式
$num = '345432123';
//(一)
$num = (int)$num;
//輸出:
//int(345432123)
//(二)
$num = intval($num);
//輸出:
//int(345432123)
采用 ASCII 碼方式
下面我們利用 ascii 碼的方式去做轉換,因為每個字符都對應一個 ascii 碼典唇,當對這個字符做加減乘除
的時候镊折,實際上就是對 ascii 碼做加減乘除
操作,也就是整型操作介衔,最終會返回一個整型數(shù)字.
通過上圖可以看到字符 '0' ~ '9' 的 ascii 碼是 48~57 我們在轉換的時候就是用每一個字符減去 '0' 例如: '1' - '0' = 1恨胚、'2' - '0' = 2 返回值就是一個Int類型,下面具體看代碼實現(xiàn).
function convertInt($strInt = ''){
$len = strlen($strInt);
$int = 0;
for($i=0;$i<$len;$i++){
$int *= 10;
$num = ord($strInt{$i}) - ord('0');
$int += $num;
}
return $int;
}
$num = '345432123';
var_dump(convertInt($num)); //輸出: int(345432123)
在 Redis 里面也有提供一個字符串轉整型的函數(shù)炎咖,也是通過ascii碼方式去做的赃泡,實現(xiàn)的比較完善嚴謹,具體可以參考下
string2ll 函數(shù)
#include <stdio.h>
#include <limits.h>
#include <string.h>
/* Convert a string into a long long. Returns 1 if the string could be parsed
* into a (non-overflowing) long long, 0 otherwise. The value will be set to
* the parsed value when appropriate. */
int string2ll(const char *s, size_t slen, long long *value) {
const char *p = s;
size_t plen = 0;
int negative = 0;
unsigned long long v;
if (plen == slen)
return 0;
/* Special case: first and only digit is 0. */
if (slen == 1 && p[0] == '0') {
if (value != NULL) *value = 0;
return 1;
}
if (p[0] == '-') {
negative = 1;
p++; plen++;
/* Abort on only a negative sign. */
if (plen == slen)
return 0;
}
/* First digit should be 1-9, otherwise the string should just be 0. */
if (p[0] >= '1' && p[0] <= '9') {
v = p[0]-'0';
p++; plen++;
} else if (p[0] == '0' && slen == 1) {
*value = 0;
return 1;
} else {
return 0;
}
while (plen < slen && p[0] >= '0' && p[0] <= '9') {
if (v > (ULLONG_MAX / 10)) /* Overflow. */
return 0;
v *= 10;
if (v > (ULLONG_MAX - (p[0]-'0'))) /* Overflow. */
return 0;
v += p[0]-'0';
p++; plen++;
}
/* Return if not all bytes were used. */
if (plen < slen)
return 0;
if (negative) {
if (v > ((unsigned long long)(-(LLONG_MIN+1))+1)) /* Overflow. */
return 0;
if (value != NULL) *value = -v;
} else {
if (v > LLONG_MAX) /* Overflow. */
return 0;
if (value != NULL) *value = v;
}
return 1;
}
//-------- 執(zhí)行 ---------
int main(){
long long num;
string2ll("345432123",strlen("345432123"),&num);
printf("%d\n",num); //輸出 345432123
retunr 0;
}