Skip to content

Instantly share code, notes, and snippets.

@leafnode
Created August 6, 2012 08:01
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 leafnode/3272149 to your computer and use it in GitHub Desktop.
Save leafnode/3272149 to your computer and use it in GitHub Desktop.
Parse date
<?php
$str = "Mon Aug 06 00:00:00 BST 2012";
$d = strtotime("$str");
echo date("Y-m-d H:i", $d);
// 2012-08-06 01:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment