如何将JSON数组转换为HTML表

时间:2012-06-15 14:51:26

标签: php html json

我在PHP脚本中有以下函数,它返回和API调用:

if (in_array((int)$result['code'], array(200, 201))) {
    $presult=(json_decode($result['body'],true));
    print_r($presult);
 } else {
    print("error parsing result");
    var_dump($result);
 }

$ presult以下列格式显示原始数据:

Array
(
    [contacts] => Array
        (
            [users] => Array
                (
                    [0] => Array
                        (
                            [first_name] => Peter
                            [last_name] => Parker

我想在HTML表格中打印这个数组,列号为序列号,名字,最后一个

1 个答案:

答案 0 :(得分:0)

我猜数组索引是序列号,所以你可以这样做:

echo '<table>
<tr>
   <th>Serial Number</th>
   <th>First name</th>
   <th>Last name</th>
</tr>';

foreach($presult['contacts']['users'] as $number => $user){
   echo '<tr>
            <td>' . $number . '</td>
            <td>' . $user['first_name'] . '</td>
            <td>' . $user['last_name'] . '</td>
         </tr>';
}

echo '</table>';

如果需要,请不要忘记转义HTML输出。