Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このJSONファイルがあります。
{ "2438": { "open": false, "tag": "borci1", }, "2210": { "open": false, "tag": "Jeskinky", }, }
私は取得する方法を知っています。「tag」または「open」ですが、「2438」と「2210」を取得するにはどうすればよいですか?
json_decodeuse foreachでjsonを解析した後
json_decode
foreach($json as $key=>$value) { //$key is the index of array }
$json_arr=json_decode($string,true); print_r( array_keys($json_arr) );