$var="qwe\n asd\n zxc\n";
Array ( [0] => qwe [1] => asd [2] => zxc )
function text2array($var) { $result = null; $tok = strtok($var, "\n"); while ($tok) { $tok = strtok("\n"); $result[] = $tok; } return $result; }
<?php $var="qwe\nasd\nzxc\n"; $arr=explode("\n",$var); print_r($arr); ?>