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