如何在php中读取json POST值

时间:2014-07-25 04:43:40

标签: php json extjs

我在添加新的网格行数据时有Extjs网格和行编辑插件保存数据后的值看起来像bellow图像请告诉我们如何使用php读取这些帖子值

enter image description here

1 个答案:

答案 0 :(得分:1)

$json = file_get_contents('php://input');
$input_data = json_decode($json, TRUE);