Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on something where the user is generating a number of objects in a form. When they submit the form, I want to echo the results back to them in a list (very distilled summary of what I'm doing).

In PHP, I know how to increment something in the conventional manner (1, 2, 3), but due to elements in the UI, I want to increment the list alphabetically (A, B, C). How would I do this?

Working code incrementing the list numerically:

//LOOP THROUGH THE ARRAY OF OBJECTS PASSED TO THIS PAGE FROM THE FORM
foreach ($waypoints as $key => $value) {
$current = $key + 1;
    echo "<p><strong>Waypoint #$current:</strong> $value</p>";
}
share|improve this question

3 Answers

up vote 7 down vote accepted

You can increment letters in the same way:

$letter = 'A';
$letter++;

echo $letter;
share|improve this answer
what after rich 'Z' ? – bensiu Mar 24 '11 at 1:12
Try it and find out! I believe it then goes to 'AA' – Crayon Violent Mar 24 '11 at 1:14
That is pretty damn cool. It does indeed go to AA – Phil Mar 24 '11 at 1:15
That's the coolest thing I've ever seen in PHP, I must admit. Wow. +1 for teaching me this trick ;) – Cyclone Mar 24 '11 at 1:17

You could do something like

$current = chr($key + 65);

Of course, you'd have to work out what happens when $key reaches 26.

share|improve this answer
@compto35 I demand you change the accepted answer to zerkm's – Phil Mar 24 '11 at 1:26
works like a charm :D – compto35 Mar 24 '11 at 1:28
sorry…your answer fit my needs better, but ok – compto35 Mar 24 '11 at 1:29
I wonder if there's a badge for what I just did? "Sore Winner"? – Phil Mar 24 '11 at 1:30
Haha or "Humble Pie" – compto35 Mar 24 '11 at 1:40

Functions ord & chr should help you.

ord('A') will give you the ASCII value of 'A'

char(X) will give you the character for ASCII value X

print chr(ord('A')+1); // outputs B

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.