Arrays
Indexed arrays
Arrays can hold ordered lists.
<?php
$colors = ["red", "green", "blue"];
echo $colors[1], "\n";
$colors[] = "yellow";
Associative arrays
String keys create map-like structures.
$user = [
"name" => "Ada",
"lessons" => 4,
];
echo $user["name"], "\n";
Loop with foreach
foreach is the everyday tool for arrays.
foreach ($user as $key => $value) {
echo "$key=$value\n";
}
Array helpers
countfor lengthin_arrayto search valuesarray_key_existsfor keysprint_r/var_dumpfor debugging
Comments
One comment per signed-in account. Comments are saved with this page’s URL.