Wednesday 8 August 2018

PHP: Looping Through The Characters Of A String.

This is a simple guide on how to loop through the characters of a string in PHP.
First of all, you need to know about the function str_split. Basically, this function converts a given string into an array. i.e. The string is split up and each character is added as an element to an array. Note that this will also include special characters and whitespaces.
A short example:
If you run the code above, you’ll see that the $myArray variable is an array that contains each character from our string.
Then, you just loop through it like so:
The code above will loop through the characters and print them out on separate lines.

0 comments:

Post a Comment