将php中的多维数组打印到html表中



所以我一直有一些麻烦打印我的多维数组到一个表。现在我

    Array
(
    [0] => stdClass Object
        (
            [id] => 00fa4033-421f-48d9-bc69-a0d9c9c4973e
            [name] => Chaka
        )
)

如何将这些数据输出到数组中。我用来打印数组的代码如下

$response = $status->getStatus('104.243.39.107');
if (!$response) {
    echo '<h2>STATUS: <span class="label label-danger">Offline</span></h2>';
} else {
    echo '<h2>STATUS: <span class="label label-success">Online</span></h2>';
    echo "Online Players " .$response['players']."/".$response['maxplayers'];
    echo '<br /><pre>';
    print_r($response['sample']); //THIS LINE
    echo '</pre>';
}

我已经尝试了很多方法来解决这个问题,但我是php的新手。

谢谢你的帮助

尝试:

echo '<table><tr><th>Id</th><th>Name</th></tr>';
foreach ($response['sample'] as $player) {
    echo '<tr><td>'.$player->id.'</td><td>'.$player->name.'</td></tr>';
}
echo '</table>';

相关内容

  • 没有找到相关文章

最新更新