深聊php中的array_chunk()函數

來源:互聯網
上載者:User

php中的array_chunk() 函數

完整的 PHP Array 參考手冊

把數組分割為帶有兩個元素的數組塊:

<?php$cars=array("Volvo","BMW","Toyota","Honda","Mercedes","Opel");print_r(array_chunk($cars,2));?>

定義和用法

array_chunk() 函數把一個數組分割為新的數組塊。

文法

array_chunk(array,size,preserve_keys);
<?php /*參數      描述array      必需。規定要使用的數組。    size       必需。一個整數,規定每個新數組塊包含多少個元素。    preserve_key    可選。可能的值:true -        保留原始數組中的鍵名。false -       預設。每個新數組塊使用從零開始的索引。*/?>

傳回值:

返回一個多維的數值數組,從 0 開始,每個維度都包含 size 元素。 PHP 版本:4.2+

把數組分割為帶有兩個元素的數組塊,並保留原始數組中的鍵名:

<?php$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43","Harry"=>"50");print_r(array_chunk($age,2,true));?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.