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"

参见

添加说明

用户贡献说明

此页没有用户贡献说明。
To Top