Vidyalelo
PHP · Q8

Regular Expressions

Programming · PHP · question 8

Q8

What will be the output of the following PHP code?

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.
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
The split() function divides a string into various elements, with the boundaries of each element based on the occurrence of a defined pattern within the string.