str_decrement

(PHP 8 >= 8.3.0)

str_decrement递减字母数字字符串

描述

str_decrement(string $string): string

返回递减的字母数字 ASCII string

参数

string

输入字符串。

返回值

返回递减的字母数字 ASCII 字符串。

错误/异常

如果 string 为空,则会抛出 ValueError

如果 string 不是字母数字 ASCII 字符串,则会抛出 ValueError

如果 string 无法递减,则会抛出 ValueError。例如,"A""0"

示例

示例 #1 基本 str_decrement() 示例

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

上面的示例将输出

string(3) "ABB"

示例 #2 带有进位的 str_decrement() 示例

<?php
$str
= 'ZA';
var_dump(str_decrement($str));

$str = 'AA';
var_dump(str_decrement($str));
?>

上面的示例将输出

string(2) "YZ"
string(1) "Z"

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top