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

时间:2015-08-11 15:49:46

标签: php arrays multidimensional-array

所以我在将多维数组打印到表格时遇到了一些麻烦。现在我

    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的新手。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

尝试:

Student