Skip to content

Instantly share code, notes, and snippets.

@sivaprabug
Last active December 12, 2015 09:39
Show Gist options
  • Save sivaprabug/4753695 to your computer and use it in GitHub Desktop.
Save sivaprabug/4753695 to your computer and use it in GitHub Desktop.
Changing the date format using php
<?php
echo date("Y M d", strtotime("20130222"));
echo "<br/><br/>";
echo date("Y/m/d", strtotime("20130222"));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment