插入阵列php foreach中的变量



我具有带有动态数组的函数。

function doIt($accountid,$targeting){
    $post_url= "https://url".$accountid."/";
    $fields = array(
          'name' => "test",
          'status'=> "PAUSED",
          'targeting' => array(
            $targeting
          ),
      ); 
   $curlreturn=curl($post_url,$fields);
};

我想在foreach循环中动态构建数组" $ fields"。这样:

$accountid="57865";    
$targeting=array(
                      "'device_platforms' => array('desktop'),'interests' => array(array('id' => '435345','name' => 'test')),",
                      "'device_platforms' => array('mobile'), 'interests' => array(array('id' => '345345','name' => 'test2')),",
                    );
foreach ($targeting as $i => $value) {
        doit($accountid,$value);
    }

问题是,该功能中的数组将无法正确填充。如果我在功能中输出数组,我会得到类似:

....[0] => array('device_platforms' => array('desktop'),'custom_audiences'=> ['id' => '356346']), ) 

开始[0]应该是问题。有什么想法我在做什么错?

希望这对您有帮助。问题是您定义$targeting数组的方式。您不能有相同名称的多个键

更改1:

$targeting = array(
array(
    'device_platforms' => array('desktop'),
    'interests' => array(
        array('id' => '435345', 
            'name' => 'test')),
    ),
array(
    'device_platforms' => array('mobile'),
    'interests' => array(
        array('id' => '345345', 
            'name' => 'test2'))
    )
);

更改2:

$fields = array(
        'name' => "test",
        'status' => "PAUSED",
        'targeting' => $targeting //removed array
    );

在此处尝试此代码段 this will just print postfields

<?php
ini_set('display_errors', 1);
function doIt($accountid, $targeting)
{
    $post_url = "https://url" . $accountid . "/";
    $fields = array(
        'name' => "test",
        'status' => "PAUSED",
        'targeting' => $targeting
    );
    print_r($fields);
}
$accountid = "57865";
$targeting = array(
    array(
        'device_platforms' => array('desktop'),
        'interests' => array(
            array('id' => '435345', 
                'name' => 'test')),
        ),
    array(
        'device_platforms' => array('mobile'),
        'interests' => array(
            array('id' => '345345', 
                'name' => 'test2'))
        )
);
foreach ($targeting as $i => $value)
{
    doit($accountid, $value);
}

最新更新