I'm trying to get a function to increment alphas upwards in PHP from say A->ZZ or AAA -> ZZZ with all the variations in between, ie. A, B, C...AA, AB, AC..ZX, ZY, ZZ etc..
The following code works sometimes, but then breaks in certain instances, this example works perfectly.
$from = "A";
$to = "ZZ";
while(strnatcmp($from, $to) <= 0) {
echo $from++;
}
While this does not work as expected.
$from = "A";
$to = "BB";
while(strnatcmp($from, $to) <= 0) {
echo $from++;
}
Output is:
First: A B C D .. AA AB AC .. ZX ZY ZZ
Second: A B
Does any one know what's going on here? or maybe a different approach to my problem. Thanks
This works, but it stops on
BA
... so you can either say$to = 'BC';
or you can toss in a$to++;
right after you declare$to
.If you're using PHP 5.5 you can use a generator.