Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created March 5, 2021 10:02
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 cursosdesarrolloweb/306f248ab21279f6bda658c19da63d1b to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/306f248ab21279f6bda658c19da63d1b to your computer and use it in GitHub Desktop.
<?php
$weekDay = 2;
echo match ($weekDay) {
1 => "Lunes",
2 => "Martes",
3 => "Miércoles",
4 => "Jueves",
5 => "Viernes",
6 => "Sábado",
7 => "Domingo",
default => 'No se ha encontrado el día',
};
// Martes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment