Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Created June 10, 2019 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviors200/b33b9583e664ae1b6de06f2ce7e7c138 to your computer and use it in GitHub Desktop.
Save flaviors200/b33b9583e664ae1b6de06f2ce7e7c138 to your computer and use it in GitHub Desktop.
Loop statement: foreach
<?php
$colors = ['blu', 'giallo', 'verde', 'rosso', 'bianco'];
// Prima versione
foreach ($colors as $color) {
echo "$color\n";
}
// Seconda versione
$days = [
'lun' => 'lunedì',
'mar' => 'martedì',
'mer' => 'mercoledì',
'gio' => 'giovedì',
'ven' => 'venerdì',
'sab' => 'sabato',
'dom' => 'domenica'
];
foreach ($days as $key => $value) {
echo "$key = $value\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment