適用php版本(PHP 8 >= 8.3.0)
str_decrement — 遞減字母數字字串
說明
str_decrement(string $string): string
返回自減的字母數字ASCII字串。引數
string
The input string.
返回值
返回自減的字母數字ASCII字串。
錯誤/異常
如果string為空,則丟擲ValueError。
如果字串不是字母數字ASCII字串,則丟擲ValueError。
如果字串不能自減,則丟擲ValueError。例如“A”或“0”。
示例
示例 #1 Basic str_decrement() example
<?php
$str = 'ABC';
var_dump(str_decrement($str));
?>
以上示例會輸出:
string(3) "ABB"
示例 #2 str_decrement() example with a carry
<?php
$str = 'ZA';
var_dump(str_decrement($str));
$str = 'AA';
var_dump(str_decrement($str));
?>
以上示例會輸出:
string(2) "YZ"
string(1) "Z"