1

我将其发送给 PHP:

  {'command' : 'move', 'data' : { 'seat_id' : '"+seat+"'}}

但无法通过 PHP 解析它。我从 PHP 得到的正确数据是:

 {'command' : 'move', 'data' : { 'seat_id' : '44'}}

我试过以下:

 <?php
 $in = $Server->output(); //this is the json text
 $o = json_decode($in); //has also tried put "TRUE" in the function.
 print_r($o); ?>

它只是输出

 {'command' : 'move', 'data' : { 'seat_id' : '44'}}
4

1 回答 1

3

正确的 JSON 使用双引号,而不是单引号。

于 2013-02-16T18:38:53.863 回答