Convert a String into an Array of Characters

You will want to use str_split().

$result = str_split('abcdef');

http://us2.php.net/manual/en/function.str-split.php

Leave a Comment