#この記事の動作環境: Windows7 システム、PHP7.1 バージョン、DELL G3 コンピューターPHP では、 json_decode 関数を使用して json を配列に変換できます。この関数の機能は、文字列を JSON 形式でデコードすることです。その構文は、「json_decode ( string $json , bool $assoc=間違い.. 。)"。
json_decode
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL json >= 1.2.0)json_decode — JSON 形式の文字列をデコードしますDescriptionjson_decode ( string $json , bool $assoc = false , int $depth = 512 , int $options = 0 ) : mixed
PHP ビデオ チュートリアル ]
例 #1 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)); ?>
object(stdClass)#1 (5) { ["a"] => int(1) ["b"] => int(2) ["c"] => int(3) ["d"] => int(4) ["e"] => int(5) } array(5) { ["a"] => int(1) ["b"] => int(2) ["c"] => int(3) ["d"] => int(4) ["e"] => int(5) }
以上がPHPでJSONを配列に変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。