(PHP 8 >= 8.3.0)
str_decrement — 递减字母数字字符串
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"