dongyixun0634 2017-03-03 03:52
浏览 23

php - 在数组中运行循环以获取动态值

We have created function to rotate banners by it's priority value.

We had run this to three banners only, But now we need multiple banners.

We used this array

$arr1 = array(
        array("url" => "1", "priority" => $AD_weight_1),
        array("url" => "2", "priority" => $AD_weight_2),
        array("url" => "3", "priority" => $AD_weight_3),
        );

But now we can't add number or ad weight manually, So we tried to use something like this but it's not working and show only last number of loop !!

$ads_limit = 7;
for ($xy = 0; $xy < $ads_limit; $xy++)
{   
    $arr1 = array(
    array("url" => $xy, "priority" => $ad_groups[$xy]['ad_before_post_weight']),
    );  
}
print_r ($arr1);

Can we use loop inside array or you have any idea for this ?

  • 写回答

1条回答 默认 最新

  • dongzhuang6177 2017-03-03 03:55
    关注

    The issue is that you are assigning the entire array on each iteration of the loop, you need to add elements.

    $ads_limit = 7;
    
    // Initialize $arr1 as an array
    $arr1 = [];
    for ($xy = 0; $xy < $ads_limit; $xy++)
    {   
        // Add ads as arrays
        $arr1[] = 
            array("url" => $xy, "priority" => $ad_groups[$xy]['ad_before_post_weight']);  
    }
    print_r ($arr1);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私