What will be the output of the following PHP code?
<?php
$text = "this is\tsome text that\nwe might like to parse.";
print_r(split("[\n\t]",$text));
?>
- this is some text that we might like to parse.
- Array ( [0] => some text that [1] => we might like to parse. )
- Array ( [0] => this is [1] => some text that [2] => we might like to parse. )
- [0] => this is [1] => some text that [2] => we might like to parse.
(d).[0] => this is [1] => some text that [2] => we might like to parse.
need an explanation for this answer? contact us directly to get an explanation for this answer