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