Guest User

Untitled

a guest
Apr 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. /**
  3. * Function: month_to_number
  4. * Converts a month name (e.g. June) to its number (e.g. 6)
  5. *
  6. * Parameters:
  7. * $name - The month.
  8. */
  9. function month_to_number($month) {
  10. $months = explode(" ", "January February March April May June July August September August November December");
  11. return array_search($month, $months) + 1;
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment