可以根据多个分隔符将字符串解析为数组吗?如代码中所述:
$str ="a,b c,d;e f";
//What i want is to convert this string into array
//using the delimiters space, comma, semicolon
答案 0 :(得分:16)
$str = "a,b c,d;e f";
$pieces = preg_split('/[, ;]/', $str);
var_dump($pieces);
array(6) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
[3]=>
string(1) "d"
[4]=>
string(1) "e"
[5]=>
string(1) "f"
}
答案 1 :(得分:0)
strtok - > http://php.net/manual/en/function.strtok.php