Skip to content

Instantly share code, notes, and snippets.

@galen
Created March 14, 2013 01:41
Show Gist options
  • Save galen/5158144 to your computer and use it in GitHub Desktop.
Save galen/5158144 to your computer and use it in GitHub Desktop.
Enums in PHP
class DaysOfWeek
{
const Sunday = 0;
const Monday = 1;
const Tuesday = 2;
const Wednesday = 3;
const Thursday = 4;
const Friday = 5;
const Saturday = 6;
}
echo DaysOfWeek::Friday;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment