21,891
社区成员
发帖
与我相关
我的任务
分享
$str = 'e23,"dfd,bnn",rty,aa,bb';
$s = preg_replace("/\"(.[^\"]*?)\"/ie","str_replace(',','@@','\\1')",$str);
$d = array_map(create_function('$s','return str_replace("@@",",",$s);'),explode(",",$s));
print_r($d);