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';
|
1
|
I want to accept a string from a form and then break it into an array of characters using PHP, for example:
|
||||
|
|
|
You don't need to do that. In PHP you can access your characters directly from the string as if it where an array:
|
||||
|
|
|
|
||||||
|
|
|
Be careful because the examples above only work if you are treating ASCII (single byte) strings. |
||
|
|
|
|
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:
Otherwise, just use $a[0], $a[1], etc... |
||
|