标签: php arrays
我在Form中发布了这种类型的字符串。然后在服务器端我得到以下字符串:
"[['certi'=>[1],'state'=>[1,2]],['certi'=>[0],'state'=>[1,2,3,4,5]]]"
我希望这个字符串采用数组格式:
[ [ 'certi'=>[1], 'state'=>[1,2] ], [ 'certi'=>[0], 'state'=>[1,2,3,4,5] ] ]