fork(2) download
  1. <?php
  2.  
  3. $str = 'one two three';
  4.  
  5. var_dump(explode('\t', $str));
  6. var_dump(explode("\t", $str));
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  string(13) "one	two	three"
}
array(3) {
  [0]=>
  string(3) "one"
  [1]=>
  string(3) "two"
  [2]=>
  string(5) "three"
}