在 PHP 中,我如何转换:
$result = "abdcef";
到一个数组中:
$result[0] = a; $result[1] = b; $result[2] = c; $result[3] = d;
您将需要使用 str_split()。
$result = str_split('abcdef');
http://us2.php.net/manual/en/function.str-split.php