php 學習筆記--數組篇(2)

來源:互聯網
上載者:User

標籤:php array 數組

array_fill(index,number,value);

作用:

    填充數組

參數:

    index : 數組開始的位置 int類型

    number: 填充的資料個數 int類型

    value: 數組的值

傳回值:

    填充後的數組

例子:在arr中添加倆個值為’dog‘ 的參數

    $arr = array_fill(1, 2 , ‘dog‘);    print_r($arr);    輸出結果    Array    (        [1] => dog        [2] => dog    )


array_fill_keys(keys, value);

作用:

    也是用於填充數組,於array_fill () 的區別就是可以自己設定key值

參數:

    keys:key值的數組

    value: 數組的值

傳回值:

    自訂的key值的數組

例子:給arr數組添加指定key值的參數

    $keys = array(‘a‘, ‘b‘, ‘c‘ );    $arr = array_fill_keys($keys, ‘hello word‘);    print_r($arr);    輸出結果    Array    (        [a] => hello word        [b] => hello word        [c] => hello word    )

   

array_filter(array,string);

作用:

    使用回呼函數對數組進行過濾

參數:

    array:需要過濾的數組

    string:回呼函數的函數名

傳回值:

    過濾後的數組

例子:輸出arr數組中大於1的參數

    function myFilter($arr)     {            if($arr > 1)         {                return true;         }            else         {                return false;         }        }        $arr = array(‘1‘, ‘3‘, 1, 3);      $res = array_filter($arr, "myFilter");     print_r($res);     輸出結果:     Array     (        [1] => 3        [3] => 3     )


array_flip(array);

作用:

    交換數組的key和value

參數:

    array:需要交換的數組

傳回值:

    交換後的參數

例子:交換數組的key值和value值

    $arr = array(‘name‘ => ‘nacy‘, ‘age‘ => ‘22‘, ‘sex‘ => ‘f‘);     $res = array_flip($arr);    print_r($res);    輸出結果:    Array    (        [nacy] => name        [22] => age        [f] => sex    )

本文出自 “蝸牛慢慢爬” 部落格,請務必保留此出處http://10130617.blog.51cto.com/10120617/1889433

php 學習筆記--數組篇(2)

相關文章

聯繫我們

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