I have a String Hello This is a String. I need to explode it in PHP only for the First White Space. How is that possible?
Hello This is a String
White Space
yes
just call
explode(' ',$s, 2)
this will create an array with at most 2 elements