0

我在 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 表中打印此数组,其中列序列号、名字、姓氏

4

1 回答 1

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 输出。

于 2012-06-15T14:57:00.767 回答