これを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'}}