如何从客户端将json对象接收到服务器上的php 2D数组中?

问题描述

| 我想从客户端的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.