Re: [PHP] Re: spliti[SOLUTION]
I missed this thread but: a) split takes on regex, explode does not. b) spliti is case insensitive, spaces don't have cases. So, in your example, might as well use explode. $words = explode(' ', trim($string)); Although, let's say the following existed (it will): $string = 'a b c d
[PHP] Re: spliti[SOLUTION]
Tested and works