簡體   English   中英

如何向維數組的每個數組添加元素?

[英]How to add an element to every array of dimensional array?

如何將元素添加到多維數組的數組,這將為我提供如下代碼的輸出

源代碼:看到有動態名稱$ tgvalues ['Name'] = Calneder產品財務提示健康提示個人事件

          foreach($json as $templategroup => $tgvalues){
                  $templateval1 = "emailtemplates?expand=".$tgvalues['Name'];
                  $final1 = str_replace(' ','%20',trim($templateval1));
                  $path1 = constant('AMT_BASE_PATH');
                  $url1 = $path1.$final1;
                  $url1;
                  $ch1=curl_init();
                  curl_setopt($ch1,CURLOPT_URL, $url1);
                  curl_setopt($ch1,CURLOPT_RETURNTRANSFER,1);
                  $buffer1 = curl_exec($ch1);
                  curl_close($ch1); 
                  $json1 = json_decode($buffer1, true);
                  $newarray =array('templatename' =>$tgvalues['Name']);
                  print_r(array_merge($json1,$newarray));
                  if (empty($buffer1)){
                      print "There are some problem";
                  } else {
                      $fetchtemplatename1 = Resources_Customers_Customer::fetchtemplategroups();
                      $insert1 = array_diff_assoc($json1, $fetchtemplatename1);

                      //print_r($insert1);
                      $arr_tampgrop =array();
                      foreach($json1 as $key1 => $value1)
                                {


                                    $arr_tampgrop[] =array('Id'=>$value1['Id'],'Name'=>$value1['Name'],'Subject'=>$value1['Subject'],'Body'=>$value1['Body'],'Href'=>$value1['Href']);


                                }
                                //$arrtempname = array($tgvalues['Name']);
                                $arraypush = array_push($arr_tampgrop,$arrtempname["templatename"] = $tgvalues['Name']);
                                print_r($arraypush); 

                              }

                            }

在源代碼中,我使用array_merge,請參見行print_r(array_merge($ json1,$ newarray));

這段代碼,我現在得到

      Array
(
      [0] => Array
    (
        [Id] => 1
        [Name] => Merry Christmas                                   
        [Subject] => Merry Christmas
        [Body] => This is the body
        [Href] => 
    )

[1] => Array
    (
        [Id] => 2
        [Name] => Happy 4th of July                                 
        [Subject] => Happy 4th!
        [Body] => This is the body of a July message
        [Href] => 
    )

[templatename] => Calendar                                          
)
 3Array
(
   [0] => Array
    (
        [Id] => 3
        [Name] => New Product 1                                     
        [Subject] => See this new product
        [Body] => This is the body of a one new product
        [Href] =>
    )

[1] => Array
    (
        [Id] => 9
        [Name] => Drip product 1                                    
        [Subject] => Drip new product 1 subject
        [Body] => Drip new product 1 body
        [Href] => 
    )

[2] => Array
    (
        [Id] => 10
        [Name] => Drip product 2                                    
        [Subject] => Drip new product 2 subject
        [Body] => Drip new product 2 body
        [Href] => 
    )

[3] => Array
    (
        [Id] => 11
        [Name] => Drip product 3                                    
        [Subject] => Drip new product 3 subject
        [Body] => Drip new product 3 body
        [Href] => 
    )

[templatename] => Products                                          
)
5Array
(
   [0] => Array
    (
        [Id] => 4
        [Name] => Happy Birthday                                    
        [Subject] => Happy Birthday
        [Body] => This is the body of a birthday card
        [Href] => 
    )

[1] => Array
    (
        [Id] => 5
        [Name] => Happy Anniversary                                 
        [Subject] => Happy Anniversary
        [Body] => This is the body of a anniversary card
        [Href] => 
    )

[2] => Array
    (
        [Id] => 6
        [Name] => After Days 0                                      
        [Subject] => We are glad you joined x0 days ago
        [Body] => This is the body of a join x0 days ago card
        [Href] => 
    )

[3] => Array
    (
        [Id] => 7
        [Name] => After Days 1                                      
        [Subject] => We are glad you joined x1 days ago
        [Body] => This is the body of a join x1 days ago card
        [Href] => 
    )

[4] => Array
    (
        [Id] => 8
        [Name] => After Days 2                                      
        [Subject] => We are glad you joined x2 days ago
        [Body] => This is the body of a join x2 days ago card
        [Href] => 
    )

[templatename] => Personal Events                                   
  )
      6Array
         (
[0] => Array
    (
        [Id] => 12
        [Name] => Drip health tip 1                                 
        [Subject] => Drip health tip 1 subject
        [Body] => Drip health tip 1 body
        [Href] => 
    )

[1] => Array
    (    
        [templatename] => Health Tips
        [Id] => 13
        [Name] => Drip health tip 2                                 
        [Subject] => Drip health tip 2 subject
        [Body] => Drip health tip 2 body
        [Href] => 
    )

[2] => Array
    (
        [templatename] => Health Tips
        [Id] => 14
        [Name] => Drip health tip 3                                 
        [Subject] => Drip health tip 3 subject
        [Body] => Drip health tip 3 body
        [Href] => 
    )


      )
       4Array
        (
      [0] => Array
    (
        [Id] => 15
        [Name] => Drip financial tip 1                              
        [Subject] => Drip financial tip 1 subject
        [Body] => Drip financial tip 1 body
        [Href] => 
    )

[1] => Array
    (
        [Id] => 16
        [Name] => Drip financial tip 2                              
        [Subject] => Drip financial tip 2 subject
        [Body] => Drip financial tip 2 body
        [Href] => 
    )

[2] => Array
    (
        [Id] => 17
        [Name] => Drip financial tip 3                              
        [Subject] => Drip financial tip 3 subject
        [Body] => Drip financial tip 3 body
        [Href] => 
    )

[templatename] => Financial Tips                                    
  ) 

所以我想要下面這樣的結果。 有沒有可能

      Array
(
      [0] => Array
    (   
        [templatename] => Calendar
        [Id] => 1
        [Name] => Merry Christmas                                   
        [Subject] => Merry Christmas
        [Body] => This is the body
        [Href] => 
    )

[1] => Array
    (
        [templatename] => Calendar
        [Id] => 2
        [Name] => Happy 4th of July                                 
        [Subject] => Happy 4th!
        [Body] => This is the body of a July message
        [Href] => 
    )


)
 3Array
(
   [0] => Array
    (
        [templatename] => Products
        [Id] => 3
        [Name] => New Product 1                                     
        [Subject] => See this new product
        [Body] => This is the body of a one new product
        [Href] =>
    )

[1] => Array
    (
        [Id] => 9
        [templatename] => Products
        [Name] => Drip product 1                                    
        [Subject] => Drip new product 1 subject
        [Body] => Drip new product 1 body
        [Href] => 
    )

[2] => Array
    (
        [templatename] => Products
        [Id] => 10
        [Name] => Drip product 2                                    
        [Subject] => Drip new product 2 subject
        [Body] => Drip new product 2 body
        [Href] => 
    )

[3] => Array
    (
        [templatename] => Products
        [Id] => 11
        [Name] => Drip product 3                                    
        [Subject] => Drip new product 3 subject
        [Body] => Drip new product 3 body
        [Href] => 
    )


)
 5Array
(
   [0] => Array
    (
        [templatename] => Personal Events
        [Id] => 4
        [Name] => Happy Birthday                                    
        [Subject] => Happy Birthday
        [Body] => This is the body of a birthday card
        [Href] => 
    )

[1] => Array
     (    
        [templatename] => Personal Events
        [Id] => 5
        [Name] => Happy Anniversary                                 
        [Subject] => Happy Anniversary
        [Body] => This is the body of a anniversary card
        [Href] => 
    )

[2] => Array
    (
        [templatename] => Personal Events
        [Id] => 6
        [Name] => After Days 0                                      
        [Subject] => We are glad you joined x0 days ago
        [Body] => This is the body of a join x0 days ago card
        [Href] => 
    )

[3] => Array
    (
        [templatename] => Personal Events 
        [Id] => 7
        [Name] => After Days 1                                      
        [Subject] => We are glad you joined x1 days ago
        [Body] => This is the body of a join x1 days ago card
        [Href] => 
    )

[4] => Array
    (
        [templatename] => Personal Events
        [Id] => 8
        [Name] => After Days 2                                      
        [Subject] => We are glad you joined x2 days ago
        [Body] => This is the body of a join x2 days ago card
        [Href] => 
    )


  )
      6Array
         (
[0] => Array
    (

        [templatename] => Health Tips
        [Id] => 12
        [Name] => Drip health tip 1                                 
        [Subject] => Drip health tip 1 subject
        [Body] => Drip health tip 1 body
        [Href] => 
    )

[1] => Array
    (
        [templatename] => Health Tips
        [Id] => 13
        [Name] => Drip health tip 2                                 
        [Subject] => Drip health tip 2 subject
        [Body] => Drip health tip 2 body
        [Href] => 
    )

[2] => Array
    (
        [templatename] => Health Tips
        [Id] => 14
        [Name] => Drip health tip 3                                 
        [Subject] => Drip health tip 3 subject
        [Body] => Drip health tip 3 body
        [Href] => 
    )


      )
     4Array
      (
   [0] => Array
    (
        [templatename] => Financial Tips
        [Id] => 15
        [Name] => Drip financial tip 1                              
        [Subject] => Drip financial tip 1 subject
        [Body] => Drip financial tip 1 body
        [Href] => 
    )

[1] => Array
    (
        [templatename] => Financial Tips
        [Id] => 16
        [Name] => Drip financial tip 2                              
        [Subject] => Drip financial tip 2 subject
        [Body] => Drip financial tip 2 body
        [Href] => 
    )

[2] => Array
    (
        [templatename] => Financial Tips
        [Id] => 17
        [Name] => Drip financial tip 3                              
        [Subject] => Drip financial tip 3 subject
        [Body] => Drip financial tip 3 body
        [Href] => 
    )


  ) 

據我所知,您將需要更改行

$arr_tampgrop[] =array('Id'=>$value1['Id'],'Name'=>$value1['Name'],'Subject'=>$value1['Subject'],'Body'=>$value1['Body'],'Href'=>$value1['Href']);

成為

$arr_tampgrop[] =array('templatename'=>$tgvalues['Name'],'Id'=>$value1['Id'],'Name'=>$value1['Name'],'Subject'=>$value1['Subject'],'Body'=>$value1['Body'],'Href'=>$value1['Href']);

並刪除任何在不希望添加模板名稱的地方添加行,例如

$newarray =array('templatename' =>$tgvalues['Name']);
print_r(array_merge($json1,$newarray));

$arraypush = array_push($arr_tampgrop,$arrtempname["templatename"] = $tgvalues['Name']);

代碼是在每個數組的末尾添加模板名稱,而不是作為數組的一部分。 它還會打印多余的數組,以便將其注釋掉,以便您更輕松地閱讀輸出。

您可以使用array_map完成此操作。 它允許您將函數應用於任何數組的每個元素。 在您的情況下,可以通過將array_map應用於父數組,將元素添加到每個子數組。

快速示例(可能需要調整您的需求)

$newArray = array_map(
     function($subArr) use ($tgvalues) { return $subArr['templatename'] = $tgvalues['Name']; },
     $json1
);

回調函數只能訪問其正在處理的數組的鍵和值。 要在回調中使用已定義的變量,請use ($var)

在我想要的數組中獲取模板名稱的值

與元素合並,即日歷,健康提示,產品等。

然后在foreach中獲取子數組的所有值並合並兩個數組

$arr_tampgrop[] = array_merge($arrgroup,$value1); 

in print_r(arr_tampgrop); result is obtained.


$arrgroup = array("templatename" => $tgvalues['Name']);
                    $arr_tampgrop =array();
                       foreach($json1 as $key1 => $value1)
                                {
                                $arr_tampgrop[] = array_merge($arrgroup,$value1);
                                }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM