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...
\"
for googlers: strtok is better for that
echo strtok("The quick brown fox", ' ');