vote up 1 vote down star
1

I want to accept a string from a form and then break it into an array of characters using PHP, for example:

$a = 'professor';
$b[0] == 'p';
$b[1] == 'r';
$b[2] == 'o';
.
.
.
.
.
$b[8] = 'r';
flag

64% accept rate
You know that strings in php are defined by " or ' ? ;) – DaNieL Apr 10 at 14:26
Hey, I saw your profile and I can see you didn't mark any answer as correct for any of the questions you made. When you find your solution, you should mark that as the correct answer for your question. That will help anyone coming here with the same problem to see what the solution actually is. – Seb Apr 11 at 14:02

4 Answers

vote up 18 vote down check

You don't need to do that. In PHP you can access your characters directly from the string as if it where an array:

$var = "My String";
echo $var[1]; // Will print "y".
link|flag
I didn't know that. good tip. – gargantaun Apr 10 at 14:25
FYI, $var{1} will work, but it's being deprecated as of PHP6 in favor of $var[1]. – whichdan Apr 11 at 22:18
vote up 9 vote down
str_split($word);

This is faster than accessing $word as an array. (And also better in that you can iterate through it with foreach().) Documentation.

link|flag
Why is it faster? It just returns an array. – St. John Johnson Apr 10 at 18:10
It is not faster; in fact, it's slower - it has to create an additional array and see where to split the original string depending on the second parameter. – Seb Apr 11 at 13:56
You're correct: a benchmark confirms that this is 50% slower than your method. – orlandu63 Apr 11 at 14:32
vote up 0 vote down

Be careful because the examples above only work if you are treating ASCII (single byte) strings.

link|flag
vote up 0 vote down

If you really want the individual characters in a variable of array type, as opposed to just needing to access the character by index, use:

$b = str_split($a)

Otherwise, just use $a[0], $a[1], etc...

link|flag
thanks for the answer............it worked – PROFESSOR Apr 15 at 15:45

Your Answer

Get an OpenID
or

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