{
"features": [
{
"id": 0,
"category": [ 6, 7, 8 ]
},
{
"id": 1,
"category": [ 1, 2, 3 ]
}
]
}
<?php
$data = json_decode( file_get_contents( './data.json' ), true );
?>
Необходимо вывести массив «category»
<?php foreach ( $data['features '] as $index => $item ): ?>
<img src='../images/icon-<?/*= $item['category'] */?>.svg' alt=''>
<?php endforeach; ?>
</div>
Нужно получить следующее
<img src='../images/icon-6.svg' alt=''>
<img src='../images/icon-7.svg' alt=''>
<img src='../images/icon-8.svg' alt=''>