PHP解码JSON POST

时间:2013-02-16 20:09:42

标签: php json

我试图以JSON的形式接收POST数据。我将其卷曲为:

curl -v --header 'content-type:application/json' -X POST --data '{"content":"test content","friends":[\"38383\",\"38282\",\"38389\"],"newFriends":0,"expires":"5-20-2013","region":"35-28"}' http://testserver.com/wg/create.php?action=post

在PHP方面,我的代码是:

$data = json_decode(file_get_contents('php://input'));

    $content    = $data->{'content'};
    $friends    = $data->{'friends'};       // JSON array of FB IDs
    $newFriends = $data->{'newFriends'};
    $expires    = $data->{'expires'};
    $region     = $data->{'region'};    

但即使我print_r ( $data)没有任何东西归还给我。这是处理POST没有表格的正确方法吗?

1 个答案:

答案 0 :(得分:23)

您提交的JSON数据不是有效的JSON。

当您在shell中使用'时,它将无法处理,因为您怀疑。

curl -v --header 'content-type:application/json' -X POST --data '{"content":"test content","friends": ["38383","38282","38389"],"newFriends":0,"expires":"5-20-2013","region":"35-28"}'

按预期工作。

<?php
$foo = file_get_contents("php://input");

var_dump(json_decode($foo, true));
?>

输出:

array(5) {
  ["content"]=>
  string(12) "test content"
  ["friends"]=>
  array(3) {
    [0]=>
    string(5) "38383"
    [1]=>
    string(5) "38282"
    [2]=>
    string(5) "38389"
  }
  ["newFriends"]=>
  int(0)
  ["expires"]=>
  string(9) "5-20-2013"
  ["region"]=>
  string(5) "35-28"
}