Javascript,PHP json不会解析?

时间:2013-02-16 18:35:45

标签: php javascript json

我发送给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'}}

1 个答案:

答案 0 :(得分:3)

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