PHP 8.4.0 RC4 available for testing

str_increment

(PHP 8 >= 8.3.0)

str_increment英数字からなる文字列をインクリメントする

説明

str_increment(string $string): string

英数字からなる ASCII 文字列 string をインクリメントし、結果の文字列を返します。

パラメータ

string

入力文字列。

戻り値

インクリメント済みの、英数字からなる ASCII 文字列を返します。

エラー / 例外

string が空の場合、 ValueError がスローされます。

string が、英数字からなる ASCII 文字列でない場合、ValueError がスローされます。

例1 str_increment() の基本的な使い方

<?php
$str
= 'ABC';
var_dump(str_increment($str));
?>

上の例の出力は以下となります。

string(3) "ABD"

例2 繰り上げがある、str_increment() の例

<?php
$str
= 'DZ';
var_dump(str_increment($str));

$str = 'ZZ';
var_dump(str_increment($str));
?>

上の例の出力は以下となります。

string(2) "EA"
string(3) "AAA"

参考

  • str_decrement() - 英数字からなる文字列をデクリメントする

add a note

User Contributed Notes 1 note

up
1
yarns_purport0n at icloud dot com
18 days ago
The strings are incremented per character and each character position can be one of 3 modes:
1. [A-Z] uppercase
2. [a-z] lowercase
3. [0-9] decimal

you can mix any combination of the modes and (at least in right to left languages like english) it always increments from the right overflowing leftwards
the mode/type of character that overflows remains the mode/type of the first (0 index) position.
so: input 'zZ9' & 'aaA0' is returned
so: input 'Z9z' & 'AA0a' is returned
so: input '9zZ' & '10aA' is returned

Example:
<?php
$str
= 'zZ9'; // overflows in lowercase
echo $str = str_increment($str).PHP_EOL; // aaA0
$str = 'Z9z'; // overflows in uppercase
echo $str = str_increment($str).PHP_EOL; // AA0a
$str = '9zZ'; // overflows in decimal
echo ($str = str_increment($str)); // 10aA
?>
To Top