hughlashbrooke.com
Loop through each character in a string in PHP - Hugh Lashbrooke
The other day I was working on a project that required me to extract a numeric ID from the current page's URL. The problem was that the ID could either be at the end of the URL string or in the middle, depending if there were any parameters added on or not. Here is how I worked around the problem by looping through each character of the string.
Hugh Lashbrooke