***php 數組添加關聯元素的方法小結(關聯陣列添加元素)

來源:互聯網
上載者:User

標籤:

我們這裡介紹的是在數組中再增加關聯陣列了,這個就合成了多維陣列,下面我來給大家舉幾個執行個體,希望對各位同學會有所協助哈。在"php 數組添加元素方法總結這篇文章中介紹了如何給數組添加元素,那麼我想添加$array=array(‘title‘=>‘php教程‘)這樣的元素怎麼辦呢。array_push, array_pop, array_shift, array_unshift 這幾個函數都是為數字類型的索引數組設計的。要想實現關聯陣列的添加可以使用array_merge方法或者是+操作符我們先來看數組中增加數組元素1. php中增加數組元素的方法:(1)通過賦值增加數組元素 :$states[‘name’]=’Tom’;(2)int array_push(array target_array,mixed variable [,mixed variable…]) 函數將variable增加到target_array的末尾,成功時返回true,否則返回false,其中variable可以是多個。(3)int array_unshift(array target_array,mixed variable [,mixed variable…]) 函數將variable增加到target_array的數組頭,成功時返回true,否則返回false,其中variable可以是多個。所有已有的數值鍵都會相應地修改,而關聯鍵不受影響。(4)array array_pad(array target_array,integer length,mixed pad_value) 將target_array 的大小增加到length指定的長度。使用array_push或者array_unshift這兩個方法行嗎?答案是否定的具體方法:1.使用array_merge方法實作類別似array_unshift在開頭添加元素的功能 代碼如下    複製代碼<?php$queue = array(‘a‘, ‘B‘);$queue = array_merge(array(‘front‘ => ‘hello‘), $queue);/*Array(    [front] => hello    [0] => a    [1] => b)*/?>2.+操作符 代碼如下    複製代碼<?php$queue = array(‘a‘, ‘B‘);$queue = array(‘front‘ => ‘Hello‘) + $queue;?>輸出結果與使用array_merge方法一樣。3.在元素結尾添加關聯陣列元素 代碼如下    複製代碼<?php$queue = array(‘a‘, ‘B‘);$queue[‘front‘] = ‘hello‘;/*輸出Array(    [0] => a    [1] => b    [front] => hello  )*/?>

 

***php 數組添加關聯元素的方法小結(關聯陣列添加元素)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.