在数组php foreach中插入变量

i have a function with a dynamic array.

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

And i want to build the array "$fields" dynamically within a foreach loop. Like that:

$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);
    }

The Problem is, that the array within the function will not be correctly filled. If i output the array in the function i get something like:

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

The beginning [0] should be the problem. Any ideas what im doing wrong?

Hope this will help you out. The problem was the way you are defining $targeting array. You can't have multiple keys with same name

Change 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'))
    )
);

Change 2:

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

Try this code snippet here 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);
}