Instead of using the [0..9] symbols use the [0..9A..Z] symbols
Instead of using the base-10 system use the base-64 system
I want to make a function like in this example:
next('ABC') return 'ACA' - this is the next string with 3 units
It is like we have numbers from 0 to 9 and the function return the next number
next2(135) return 136 - this is the next number with 3 digits
We use a base-10 system for numbers an I want to use numbersletters that means a base-36 system, and get the next so called number
Here's a function that produces the next value in your base-3 alphabetic number system:
Note that the result is "CA" as "ACA" is the same as writing "06" in base-10... we don't usually write leading zeros so you wouldn't write leading "A"s.
I therefore added a pad parameter that lets you specify what number of digits you want to pad to. With
$pad=3
, you get "ACA" as next from "ABC".