Skip to content

Instantly share code, notes, and snippets.

@jeff1evesque
Created July 18, 2015 12:39
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 jeff1evesque/4540da7f91ad884d6ebc to your computer and use it in GitHub Desktop.
Save jeff1evesque/4540da7f91ad884d6ebc to your computer and use it in GitHub Desktop.
Convert date string to unix time
// date to convert
$date_string = 'Thursday, July 9, 2015 - 14:54'
// conversion logic
$time = str_replace(' - ', ' ', $date_string);
$epoch = strtotime($time);
// converted unix time
var_dump($epoch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment