2017-04-30 23 views
-1

PHP経由でこのJSONから「required_version」を取得するにはどうすればよいですか?PHP JSON(デコード)

{ 
    "response": { 
     "success": true, 
     "up_to_date": false, 
     "version_is_listable": false, 
     "required_version": 13576, 
     "message": "Your server is out of date, please upgrade" 
    } 
} 

`json_decode`を使用 エンゲ

+0

よろしくと 、どうもありがとうございました。 –

答えて

0
$json = <<<'__EOS__' 
{ 
    "response": { 
     "success": true, 
     "up_to_date": false, 
     "version_is_listable": false, 
     "required_version": 13576, 
     "message": "Your server is out of date, please upgrade" 
    } 
} 
__EOS__; 

$obj = json_decode($json); 
echo $obj->response->required_version; 
+0

完璧、ありがとうございます。なぜ私は__EOS__が必要ですか? – Enge

+0

文字列がすでに存在するときは、この文字列は必要ありません。これは単なる文字列区切り文字の形式です。 (heredoc/nowdoc構文) –