php8.5
Home/ Manual/ strings / functions/ str_decrement

str_decrement

PHP function Edit on GitHub ✎

(PHP 8 >= 8.3.0)

Decrement an alphanumeric string

Description

str_decrement(string $string): string

Returns the decremented alphanumeric ASCII string.

Parameters

string

The input string.

Return Values

Returns the decremented alphanumeric ASCII string.

Errors/Exceptions

A ValueError is thrown if string is empty.

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

A ValueError is thrown if string cannot be decremented. For example, "A" or "0".

Examples

Basic str_decrement() example

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

The above example will output:

output
string(3) "ABB"

str_decrement() example with a carry

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

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

The above example will output:

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

See Also

Source: reference/strings/functions/str-decrement.xml · from the official PHP manual (php/doc-en)