PHP陣列定義的類型包括:索引陣列:使用數字索引存取元素。關聯數組:使用字串鍵存取元素。多維數組:元素可以是其他數組。命名數組:PHP 7中的命名常數作為數組鍵。
PHP 陣列定義的類型
PHP 中陣列的定義有多種類型:
1. 索引陣列(Indexed Arrays)
這是最常見的陣列類型,它使用數字索引來存取元素。
<code class="php">$fruits = array("Apple", "Banana", "Orange");</code>
2. 關聯數組(Associative Arrays)
也稱為雜湊表或映射,使用字串鍵來存取元素。
<code class="php">$person = array("name" => "John", "age" => 30);</code>
3. 多維數組(Multidimensional Arrays)
數組中的元素可以是其他數組,從而創建多維數組。
<code class="php">$matrix = array( array(1, 2), array(3, 4) );</code>
4. 命名數組(Named Arrays)
在 PHP 7 中引入了命名數組,它允許定義命名常數作為數組鍵。
<code class="php">const FRUITS = array("Apple", "Banana", "Orange");</code>
以上是php中數組的定義有幾種的詳細內容。更多資訊請關注PHP中文網其他相關文章!