PHP Steam Inventory JSon Decoder

时间:2015-10-05 05:17:04

标签: php json steam steam-web-api

我之前从未与json合作过,而且我不确定如何完全使用rgDescriptions。所以基本上我需要获取{"id":"2","instanceID":"8"}表中的所有项目,但老实说我不确定如何。

所以,如果有人能指出我正确的方向,这将是伟大的。我曾试图在Json上寻找文档/教程,但似乎无法找到高级内容。

仅限.radiotext { margin: 10px 10px 0px 0px; }

之类的内容

Example of the json I want to decode

1 个答案:

答案 0 :(得分:2)

使用json_desode()解码json格式。

$json = '{"id":"2","instanceID":"8"}';
$decoded = json_decode($json);
print_r($decoded);// will print decoded format of your json
echo $decoded->id; // outputs => 2
echo $decoded->instanceID; // outputs => 8

Otuput:

stdClass Object
(
    [id] => 2
    [instanceID] => 8
)