Number::intToAlphadecimal

public static function Number::intToAlphadecimal

public static Number::intToAlphadecimal($i = 0)

Generates a sorting code from an integer.

Consists of a leading character indicating length, followed by N digits with a numerical value in base 36 (alphadecimal). These codes can be sorted as strings without altering numerical order.

It goes: 00, 01, 02, ..., 0y, 0z, 110, 111, ... , 1zy, 1zz, 2100, 2101, ..., 2zzy, 2zzz, 31000, 31001, ...

Parameters

int $i: The integer value to convert.

Return value

string The alpha decimal value.

See also

\Drupal\Component\Utility\Number::alphad