私はこのコードを使用して、JSONエンコード形式のデータをPHPに渡します。それが受信され、適切な形式でビームされている場合、私はPHPの最後で確認する方法はありますか?as3のJSONエンコード
var people:Array = new Array();
var person:Object = new Object();
var url:String = "http://localhost/ping.php";
var request:URLRequest = new URLRequest(url);
var requestVars:URLVariables = new URLVariables();
var loader:URLLoader = new URLLoader();
person.fullname = "jon jay junior";
person.username = "jjj";
person.role = "ADMIN";
people.push(person);
request.method = URLRequestMethod.POST;
requestVars.myObject = JSON.encode(people);
request.data = requestVars;
loader.load(request);
可能重複を経由して呼び出すことである[JSONをデコードすることができない](http://stackoverflow.com/questions/4327323/unable -to-decode-json) – PatrickS