PHP 中定義陣列有以下三種主要方法:索引陣列:使用數字索引鍵儲存元素。關聯數組:使用字串鍵值儲存元素。多維數組:將子數組儲存在數組元素中。
PHP中的陣列定義方法
PHP中定義陣列有三種主要方法:
1. 索引陣列
定義的索引陣列中,元素以數字索引鍵儲存。
<code class="php">$fruits = array("apple", "banana", "orange");</code>
2. 關聯陣列
在關聯陣列中,元素以字串鍵值儲存。
<code class="php">$fruits = array("apple" => "red", "banana" => "yellow", "orange" => "orange");</code>
3. 多維數組
多維數組將子數組儲存在數組元素中。
<code class="php">$fruits = array( "apple" => array("red", "green"), "banana" => array("yellow", "green"), "orange" => array("orange", "yellow") );</code>
附加資訊:
[]
語法定義陣列。 以上是php中定義陣列的方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!