从Foreach Loop PHP创建关联数组 [英] Create associative array from Foreach Loop PHP

查看:101
本文介绍了从Foreach Loop PHP创建关联数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个foreach循环:

I have this foreach loop:

foreach($aMbs as $aMemb){
    $ignoreArray = array(1,3);
    if (!in_array($aMemb['ID'],$ignoreArray)){ 
        $aMemberships[] = array($aMemb['ID'] => $aMemb['Name']);
    }
}

这会打印出正确的字段,但它们是数组中的数组.我需要foreach循环来输出一个像这样的简单数组:

This prints out the right fields but they are arrays inside arrays. I need the foreach loop to output a simple array like this one:

$aMemberships = array('1' => 'Standard', '2' => 'Silver');

我在做什么错了?

推荐答案

您需要更改$ aMemberships分配

You need to change your $aMemberships assignment

$aMemberships[] = $aMemb['Name']; 

如果要数组

$aMemberships[$aMemb['ID']] = $aMemb['Name'];

如果您想要一张地图.

您正在做的是将数组追加到数组.

What you are doing is appending an array to an array.

这篇关于从Foreach Loop PHP创建关联数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆