Statement on glibc/iconv Vulnerability

str_increment

(PHP 8 >= 8.3.0)

str_incrementIncrement an alphanumeric string

说明

str_increment(string $string): string

Returns the incremented alphanumeric ASCII string.

参数

string

The input string.

返回值

Returns the incremented alphanumeric ASCII string.

错误/异常

A ValueError is thrown if string is empty.

A ValueError is thrown if string is not an alphanumeric ASCII string.

示例

示例 #1 Basic str_increment() example

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

以上示例会输出:

string(3) "ABD"

示例 #2 str_increment() example with a carry

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

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

以上示例会输出:

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

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top