Skip to content

Instantly share code, notes, and snippets.

@yang-wei
Created May 14, 2014 14:26
Show Gist options
  • Save yang-wei/4f841ada8c0ab4743602 to your computer and use it in GitHub Desktop.
Save yang-wei/4f841ada8c0ab4743602 to your computer and use it in GitHub Desktop.
Get the FTW Unix TimeStamp of any format of time easily
<?php
// use DateTime object to turn any format of date & time into standard form
//Example1
$date = DateTime::createFromFormat('m/d/y @ h:ia', '04/04/2014 @ 3.13pm')->getTimestamp();
//Example2
$date = DateTime::createFromFormat('YmdHis', '20130312000000')->getTimestamp();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment