我想将json_encode数组打印成html中的表格格式。我尝试了以下方法:
<table align="center">
<tr>
<td style="min-width: 400px; height: 400px; margin: 0 auto;margin-top:50px">
<div id="container2" style="min-width: 400px; height: 400px; margin: 0 auto;margin-top:50px"></div>
</td>
<td><?php echo json_encode($names1,JSON_NUMERIC_CHECK); ?></td>
</tr>
</table>
但遗憾的是它只是以正常的 json_encode 输出。如何将 json_encode 输出打印为表格?