问题描述
|
我想从客户端的javascript中的JSON对象填充
PHP中的2D数组。有人可以帮助我执行此
功能吗?
解决方法
json_decode()
http://php.net/manual/zh/function.json-decode.php
,从我的头开始,对您的代码一无所知
你可以使用json_decode
像这样使用它:
$array = json_decode($_POST[\'data\'],true);
#check the second parameter set to true,otherwise you will get a stdclass.