Changing from dd/mm/yyyy to yyyy/mm/dd
This doesn't always work using the stringtodate and date functions. So here is a little snippet that I found useful:
$string = 'd/m/y';
$newstring = explode('/',$string);
array_reverse($newstring);
$finalstring = implode('/',$newstring);
Even more useful, using the snippet below, you can rearrange in any order:
$string = "dd/mm/yyyy";
list($day, $month, $year) = explode("/", $string);
$finalstring = $day . '-' . $month . '-' . $year;
Written by Antony D'Andrea
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Related Tags
#php
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#