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中文网其他相关文章!