Skip to content

Instantly share code, notes, and snippets.

@ezekg
Last active August 29, 2015 14:04
Show Gist options
  • Save ezekg/add88d0ff04d89fe4406 to your computer and use it in GitHub Desktop.
Save ezekg/add88d0ff04d89fe4406 to your computer and use it in GitHub Desktop.
<?php
// Alternative to large switch statements
// ----
$dayFunctions = array(
1 => function() {
// do stuff
return "something";
},
2 => function() {
// do stuff
return "something";
},
// ...
15 => function() {
// pay people
return "something";
},
30 => function() {
// do stuff
return "something";
},
);
$res = array_key_exists( $dayOfTheMonth, $dayFunctions ) ? $dayFunctions[$dayOfTheMonth]() : null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment