php字符串增加1如何实现

2023-02-08 22:48:55 8 0
魁首哥

php字符串增加1如何实现

这篇“php字符串增加1如何实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“php字符串增加1如何实现”文章吧。

php字符串增加1如何实现

php字符串增加1的实现方法:1、新建php示例文件;2、创建“function inc($s) {...}”方法;3、通过“while ($n-- > 0) {$s = inc($s);}”计算除去最后一个字符的字符串,然后进位即可。

php 数字字符串 +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"

递归,如果需要进位, 先计算除去最后一个字符的字符串, 最后一个字符置为'0'; 单个数字字符0-9显然好处理。

* test:

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

比较结果一致

* 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");

以上就是关于“php字符串增加1如何实现”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注恰卡编程网行业资讯频道。

收藏
分享
海报
0 条评论
8
上一篇:php如何判断字符串是否有中文 下一篇:过生日送什么花合适(过生日应该送的4种花)

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码