以下のjson形式の値を1つずつ表示するにはechoを使用するにはどうすればよいですか?ありがとうございます
<?php $json_file = "list.json"; $handle = fopen($json_file , "r"); $contents = fread($handle,filesize($json_file)); fclose($handle);// $js = json_decode($contents);// print_r $js; foreach (range(4, 3, -1) as $depth) { var_dump(json_decode($contents, true, $depth)); }?>
出力結果:
array(3) {
["traffic.statistics"]=>
array(2) {
["ethernet.bytes"]=>
["low.protos"]=>
int(2)
}
["detected.protos"]=>
array(2) {
[0]=>
[ "名前"]=>
"DHCPV6"
["パケット"]=>
int(1)
["フロー"]=> (1)
}
[1]=>
array(4) {
["name"]=>
string(5) "LLMNR"
["packets "]=> array(0) {
}
}
NULL
ディスカッションに返信(解決策)
list.json ファイルの内容を投稿
foreach traversal
list.json ファイルの内容を投稿
あなた、解決しました
foreach traversal
ありがとうございます