Months of the Year
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
];
print_r($months);
echo "
";
$months[13] = "Winter";
$months[14] = "Construction";
foreach ($months as $type => $value) {
echo "The month of $value is month number $type
";
}
?>
Pizza Toppings
$vegetables,
"Meats" => $meats,
"Cheeses" => $cheeses
];
foreach ($toppings as $type => $value) {
echo "$type: ";
if (is_array($value)) {
foreach ($value as $number => $topping) {
echo "$topping, ";
}
} else {
echo "$type is $value
";
}
echo "
";
};
echo "
";
$prices = [
"Small" => 6.99,
"Medium" => 8.99,
"Large" => 13.99,
"X-Large" => 18.99,
"Supersize" => 22.99
];
asort($prices);
foreach ($prices as $type => $value) {
echo "$type: $value
";
};
echo "
";
ksort($prices);
foreach ($prices as $type => $value) {
echo "$type: $value
";
};
?>