如何读取此json数据并在php Laravel中显示在表格中?
[{"name":"G_edited"},{"name":"G_update"}]
答案 0 :(得分:0)
$json = '[{"name":"G_edited"},{"name":"G_update"}]';
$array = json_decode($json);
foreach ($array as $item)
{
echo $item['name'];
}
答案 1 :(得分:0)
您只需使用json_decode()
即可获得所需的结果。然后使用foreach
在表格中打印。考虑这个例子:
<?php
$raw_json = '[{"name":"G_edited"},{"name":"G_update"}]';
$data = json_decode($raw_json, true);
?>
<table border="1" cellpadding="10">
<tr><th>Name</th></tr>
<?php foreach($data as $key => $value): ?>
<tr><td><?php echo $value['name']; ?></td></tr>
<?php endforeach; ?>
</table>