Can you turn this string into an array?

explode(", ", $family);substr($family, 5, 17)array(", ", $family);

Great! The explode() function does the job. It only needs a delimiter and the string we want to, well, explode.

Whoops. The explode() function does the job. It only needs a delimiter and the string we want to, well, explode.