Question: What will be the correct output of the following syntax ?
<?php
$text="this is\tsome text that\nwe might like to parse.";
print_r(split("[\n\t]",$text));
?>
A
Array ( [0] => this is some[1] => text that [2] => we might like to parse. )
B
Array ( [0] => this is [1] => some text [2] =>that we might like to parse. )
C
Array ( [0] => this is [1] => some text that we [2] => might like to parse. )
D
Array ( [0] => this is [1] => some text that [2] => we might like to parse. )