Q. Which PHP function splits a string into an array?
β
Correct Answer: (D)
Both str_split() and explode()
Explanation: explode() splits by delimiter, str_split() splits by length.