<?php $str = 'one two three'; var_dump(explode('\t', $str));var_dump(explode("\t", $str));
Standard input is empty
array(1) { [0]=> string(13) "one two three" } array(3) { [0]=> string(3) "one" [1]=> string(3) "two" [2]=> string(5) "three" }
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!