In PHP, how do I convert:
$result = "abdcef";
into an array that\'s:
$result[0] = a; $result[1] = b; $result[2] = c;
With the help of str_split function, you will do it.
Like below::
"; print_r($result); ?>