本文介绍了将逗号分隔的字符串分割成数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将字符串输入以逗号分隔为一个数组.
I need to split my string input into an array at the commas.
有没有办法将逗号分隔的字符串分解为一个平坦的索引数组?
Is there a way to explode a comma-separated string into a flat, indexed array?
输入:
9,[email protected],8
输出:
['9', 'admin@example', '8']
推荐答案
尝试展开:
$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);
输出:
Array
(
[0] => 9
[1] => [email protected]
[2] => 8
)
这篇关于将逗号分隔的字符串分割成数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!