Skip to content

Instantly share code, notes, and snippets.

@tamboer
Created November 7, 2013 12:11
Show Gist options
  • Select an option

  • Save tamboer/7353640 to your computer and use it in GitHub Desktop.

Select an option

Save tamboer/7353640 to your computer and use it in GitHub Desktop.
week day to number or visa versa
<?php
function dayToNumber($day) {
$array = array('Mon' => 1, 'Tue' => 2, 'Wed' => 3, 'Thu' => 4, 'Fri' => 5, 'Sat' => 6, 'Sun' => 7);
$result = $array[$day];
return $result;
}
function numberToDay($number) {
$array = array(1 => 'Mon', 2 => 'Tue', 3 => 'Wed', 4 => 'Thu', 5 => 'Fri', 6 => 'Sat', 7 => 'Sun');
$result = $array[$number];
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment