91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在PHP中將字符串轉換為整型

發布時間:2021-01-20 15:02:59 來源:億速云 閱讀:160 作者:Leah 欄目:開發技術

怎么在PHP中將字符串轉換為整型?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

系統內置 API 方式

$num = '345432123';

 //(一)
$num = (int)$num;
//輸出:
//int(345432123)

//(二)
$num = intval($num);
//輸出:
//int(345432123)

采用 ASCII 碼方式

下面我們利用 ascii 碼的方式去做轉換,因為每個字符都對應一個 ascii 碼,當對這個字符做加減乘除的時候,實際上就是對 ascii 碼做加減乘除操作,也就是整型操作,最終會返回一個整型數字.

怎么在PHP中將字符串轉換為整型
-圖片轉自網絡-

通過上圖可以看到字符 '0' ~ '9' 的 ascii 碼是 48~57 我們在轉換的時候就是用每一個字符減去 '0' 例如: '1' - '0' = 1、'2' - '0' = 2 返回值就是一個Int類型,下面具體看代碼實現.

function convertInt($strInt = ''){ 
 $len = strlen($strInt); 
 $int = 0;

 for($i=0;$i<$len;$i++){
  $int *= 10;   
  $num = $strInt{$i} - '0';   
  $int += $num;  
 }

 return $int;  
}

 $num = '345432123'; 
 var_dump(convertInt($num)); //輸出: int(345432123)

Redis 里面也有提供一個字符串轉整型的函數,也是通過ascii碼方式去做的,實現的比較完善嚴謹,具體可以參考下

string2ll 函數

#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;
}

//-------- 執行 ---------
int main(){
 long long num;
 string2ll("345432123",strlen("345432123"),&num);
 printf("%d\n",num); //輸出 345432123
 retunr 0;
}

看完上述內容,你們掌握怎么在PHP中將字符串轉換為整型的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝应县| 城口县| 郧西县| 冀州市| 高阳县| 二手房| 乐安县| 宜阳县| 佛坪县| 兴化市| 磐石市| 新龙县| 海宁市| 东兰县| 刚察县| 镇赉县| 华蓥市| 化隆| 沙坪坝区| 乌鲁木齐市| 顺昌县| 鄂州市| 化州市| 会理县| 枝江市| 铁岭县| 长子县| 大名县| 泾源县| 墨脱县| 武汉市| 平阴县| 富阳市| 弥渡县| 五河县| 沙田区| 宜城市| 平凉市| 穆棱市| 邵东县| 平塘县|