php split teks besar on line pecah menjadi array

#1
$arr=explode("\n",$text);

#2
$arr=explode("<br>",nl2br($text));
RapTToR