Convert a String into an Array of Characters

Posted by AJ on Stack Overflow See other posts from Stack Overflow or by AJ
Published on 2010-05-04T19:21:07Z Indexed on 2010/05/04 19:28 UTC
Read the original article Hit count: 133

Filed under:
|
|
|

in PHP, how do i convert:

$result = abdcef;

into an array thats:

$result[0] = a;
$result[1] = b;
$result[2] = c;
$result[3] = d;

??????

© Stack Overflow or respective owner

Related posts about php

Related posts about arrays