我想在客户端的javascript中从JSON对象填充php中的2D数组。有人可以帮我做这个功能吗?
答案 0 :(得分:3)
从头到尾,不知道你的代码
您可以使用json_decode
像这样使用它:
$array = json_decode($_POST['data'], true);
#check the second parameter set to true, otherwise you will get a stdclass.
答案 1 :(得分:1)
json_decode()