「PHP」 JSON 文字列をデコードするサンプル
説明
json_decode ( string $json [, bool $assoc = NULL [, int $depth = 512 [, int $options = 0 ]]] ) : mixed
JSON エンコードされた文字列を受け取り、それを PHP の変数に変換します。
パラメータ
json
デコード対象となる json 文字列。
assoc
TRUE の場合、返されるオブジェクトは連想配列形式になります。
FALSE の場合、返されるオブジェクトは object になります。
PHPコード
<?php $cft = '{"A01":"SE","B02":"PG","C03":"KK","D04":"FF"}'; $jj = json_decode($cft,true); print $jj["C03"]; print $jj["C03"]; echo "<pre>"; var_dump($jj); echo "</pre>"; ?>
実行結果
KK
FF
array(4) {
[“A01"]=>
string(2) “SE"
[“B02"]=>
string(2) “PG"
[“C03"]=>
string(2) “KK"
[“D04"]=>
string(2) “FF"
}