What will be the output of the following PHP code?
<?php $text = "this istsome text thatnwe might like to parse."; print_r(split("[nt]",$text)); ?>
A.this is some text that we might like to parse.
B.Array ( [0] => some text that [1] => we might like to parse. )
C.Array ( [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.
Answers
Answered by
1
hey mate........the answer is
D. [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.
Answered by
1
like to parse. )
C.Array ( [0] => this is [1] => some text that [2] => we might like to parse. )
C.Array ( [0] => this is [1] => some text that [2] => we might like to parse. )
Similar questions