I'm using the following code
$t = strtotime('Saturday, 28 Dec, 2013');
echo date('d/m/Y H:i',$t);
// output : 03/01/2015 20:13
$t = strtotime('Wednesday, 01 Jan, 2014');
echo date('d/m/Y H:i',$t);
// output: 01/01/2014 20:14
The first example prints out the wrong date, and the second one prints out the correct date.
Why is this and how do I fix it?
$t = strtotime('Saturday, 28 Dec 2013');
– Desireah