溫馨提示×

溫馨提示×

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

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

php字符串增加1如何實(shí)現(xiàn)

發(fā)布時間:2023-02-08 11:57:30 來源:億速云 閱讀:125 作者:iii 欄目:編程語言

這篇“php字符串增加1如何實(shí)現(xiàn)”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“php字符串增加1如何實(shí)現(xiàn)”文章吧。

php字符串增加1的實(shí)現(xiàn)方法:1、新建php示例文件;2、創(chuàng)建“function inc($s) {...}”方法;3、通過“while ($n-- > 0) {$s = inc($s);}”計(jì)算除去最后一個字符的字符串,然后進(jìn)位即可。

php 數(shù)字字符串 +1 操作 累加 加一 (不溢出)

* inc.php

<?php
 
function inc($s) {
    if (empty($s)) {return "1";}
    if ( ! isset($s[1]) ) {
        $code = ord($s[0]) + 1;
        if ($code <= ord("9")) {
            return chr($code);
        }
        return "10";
    }
    $n = strlen($s);
    $code = ord($s[$n-1]) +1;
    if ($code <= ord("9")) {
        return substr($s, 0, $n-1).chr($code);
    }
    return inc(substr($s, 0, $n-1))."0";
}
 
$s = "2147483647";
$n = 10000;
while ($n-- > 0) {
    // printf("%s\n", $s);
    $s = inc($s);
}
printf("%s\n", $s); // "2147493647"

遞歸,如果需要進(jìn)位, 先計(jì)算除去最后一個字符的字符串, 最后一個字符置為'0'; 單個數(shù)字字符0-9顯然好處理。

* test:

<?php
 
$m = 2147483647;
 
$n = 10000;
while ($n-- > 0) {
    // printf("%d\n", $m);
    $m++;
}
printf("%d\n", $m);

比較結(jié)果一致

* add2.php  // 遍歷1-4位大寫字母

<?php
 
function add($s) {
    if (empty($s)) {return "A";}
    if ( ! isset($s[1]) ) {
        $code = ord($s[0]) + 1;
        if ($code <= ord("Z")) {
            return chr($code);
        }
        return "AA";
    }
    $n = strlen($s);
    $code = ord($s[$n-1]) +1;
    if ($code <= ord("Z")) {
        return substr($s, 0, $n-1).chr($code);
    }
    return add(substr($s, 0, $n-1))."A";
}
 
$s = "";
do {
    $s = add($s);
    printf("%s\n", $s);
} while ($s != "ZZZZ");

以上就是關(guān)于“php字符串增加1如何實(shí)現(xiàn)”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI