php字串增加1的實作方法:1、新php範例檔;2、建立「function inc($s) {...}」方法;3、透過「while ($n-- > 0) {$s = inc($s);}」計算除最後一個字元的字串,然後進位即可。
本教學操作環境:Windows10系統、PHP8.1版、DELL G3電腦
php字串增加1怎麼實現?
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影片教學》
以上是php字串增加1怎麼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!