以下のように、iPhoneアプリからjson応答を取得しています
{"json":{"age":"23","userid":"1","weight":"55","fullname":"goutham"}};
誰でもデコード方法を教えてもらえますか..
PHPの関数を使用します:json_decode
<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));
?>
出典:上記参照マニュアルの例
json_decodeを使用する
$array = json_decode($string, true);
/// please note the second parameter 'true' here, it is needed if you want your o/p as array or you will get it as object
print_r($array);
参照:http://php.net/json_decode
使用できます
json_decode();
お気に入り
json_decode($my_json);
または、json_code.age; json_code.useridのように使用して、このhttp://php.net/manual/en/function.json-decode.phpを参照することもできます。
または、このonlinrコンバーターを参照できますhttp://json.parser.online.fr/
ここで質問を見逃していると思います。あなたが提供したjson文字列を見ると、プロパティを持つオブジェクトがあることがはっきりとわかります。
json http://www.json.org/の仕様を見てください。
{json:{年齢:23 など
それに json_decode を実行することで、単に次のように言うだけでオブジェクトのプロパティを取得できると期待しています: $json->age
お役に立てれば