Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created January 28, 2015 16:07
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 tripflex/41405633a920cb1dc379 to your computer and use it in GitHub Desktop.
Save tripflex/41405633a920cb1dc379 to your computer and use it in GitHub Desktop.
Convert date timestamp to any format with PHP
<?php
$date = "15-01-28";
$timestamp = strtotime( $date );
// See http://php.net/manual/en/function.date.php for available formats
echo date( "F j, Y", $timestamp );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment