問題描述
我有一個《使命召喚 4》玩家列表的多維數(shù)組.當(dāng)我嘗試回顯該數(shù)組時,它返回 Array
30 次,因為服務(wù)器中有 30 個當(dāng)前玩家.
I have an multidimensional array of a player list for Call of Duty 4. When I try to echo the array it comes back with Array
30 times because there are 30 current players in the server.
$promodplist 的 Var_Dump(玩家列表)
Var_Dump of $promodplist (Players List)
array(27) {
[0]=> array(6) {
["frags"]=> string(1) "0"
["ping"]=> string(2) "26"
["nick"]=> string(10) "DIVINEBRAH"
["gq_name"]=> string(10) "DIVINEBRAH"
["gq_score"]=> string(1) "0"
["gq_ping"]=> string(2) "26"
}
[1]=> array(6) {
["frags"]=> string(1) "0"
["ping"]=> string(2) "35"
["nick"]=> string(7) "><> <><"
["gq_name"]=> string(7) "><> <><"
["gq_score"]=> string(1) "0"
["gq_ping"]=> string(2) "35"
}
[2]=> array(6) {
["frags"]=> string(1) "0"
["ping"]=> string(2) "42"
["nick"]=> string(10) "xXthe0neXx"
["gq_name"]=> string(10) "xXthe0neXx"
["gq_score"]=> string(1) "0"
["gq_ping"]=> string(2) "42"
}
<小時>
$servers['promod'] = array('cod4', '67.202.102.224');
$servers['promod2'] = array('cod4', '67.202.102.224');
$gq = new GameQ();
$gq->addServers($servers);
$results = $gq->requestData();
function print_results($results) {
foreach ($results as $id => $data)
這就是我試圖用來列出當(dāng)前球員的內(nèi)容.
And this is what I am trying to use to list the current players.
$promodplist = $data['promod']['players'];
foreach($promodplist as $k => $v)
我只是想回顯每個數(shù)組中的 nick
(昵稱).
I just simply want to echo out the nick
(nickname) in each array.
推薦答案
$promodplist = $data['promod']['players'];
foreach($promodplist as $k => $v)
print($v['nick']);
應(yīng)該做你想做的.foreach
遍歷數(shù)組中的鍵/值對,其中 $k
是元素的鍵(在您的情況下是基于 0 的索引),而 $v
是值(玩家數(shù)據(jù)的數(shù)組,對于您而言).您可以通過使用其名稱作為 數(shù)組訪問器.
Should do what you want. foreach
iterates through the key/value pairs in the array, where $k
is the element's key (a 0-based index, in your case) and $v
is the value (an array of player data, for you). You can access the rest of the information by using its name as the key in the array accessor.
這篇關(guān)于回顯多維數(shù)組的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!