Return the portion of a string before the first occurrence of a character in php

hoogsoadaky

New Member
In PHP, what is the simplest way to return the portion of a string before the first occurrence of a specific character?For example, if I have a string..."The quick brown foxed jumped over the etc etc."...and I am filtering for a space character (" "), the function would return"The"Thanks!
 
Back
Top