I've Scenario where user type a string in search box. If the entered string reaches more than one word, i explode it by using,
$text = "Hello World";
$pieces = explode(' ', $text);
and i will get the first and second term by
$pieces['0'] & $pieces['1'].
But, if an user type something like,
$text = "Hello                    World";
how should i get the second term?
If i var_dump the results, i'm getting 
array(12) {
  [0]=>
  string(5) "Hello"
  [1]=>
  string(0) ""
  [2]=>
  string(0) ""
  [3]=>
  string(0) ""
  [4]=>
  string(0) ""
  [5]=>
  string(0) ""
  [6]=>
  string(0) ""
  [7]=>
  string(0) ""
  [8]=>
  string(0) ""
  [9]=>
  string(0) ""
  [10]=>
  string(0) ""
  [11]=>
  string(5) "World"
}
 
     
     
     
     
    