PHP建立定義數組

來源:互聯網
上載者:User

標籤:

   $array = array();  
    $array["key"] = "values";  
?> 
在PHP中聲明數組的方式主要有兩種:
1.用array()函式宣告數組,
2.直接為數組元素賦值。

    //array數組
    $users = array(‘phone‘,‘computer‘,‘dos‘,‘linux‘);
    echo $users;//只會列印出資料類型Array
    print_r($users);//Array ( [0] => phone [1] => computer [2] => dos [3] => linux )


    $numbers = range(1,5);//建立一個包含指定範圍的數組
    print_r($numbers);//Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )
    print_r(true);//1
    var_dump(false);//bool(false)

//print_r可以把字串和數字簡單地列印出來,數組會以Array開頭並已索引值形式表示,print_r輸出布爾值和null的結果沒有意義,因此用var_dump更合適

//通過迴圈來顯示數組裡所有的值
    for($i = 0 ;$i < 5;$i++){
        echo $users[$i];
        echo ‘
‘;
    }

//通過count/sizeof統計數組中單元數目或對象中的屬性個數


    for($i = 0; $i < count($users);$i++){
        echo $users[$i];
        echo ‘
‘;
    }
//還可以通過foreach迴圈來遍曆數組,這種好處在於不需要考慮key
    foreach($users as $value){
        echo $value.‘
‘;//點號為字串串連符號
    }
//foreach迴圈遍曆 $key => $value;$key和$value是變數名,可以自行設定
    foreach($users as $key => $value){
        echo $key.‘
‘;//輸出鍵
    }
?>
去看看你都知道那些?》》顏色代碼大全

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.