I have date stamps from external source as per below format
Tue 6/02/2018
However when trying to convert the date to Y-m-d for SQL format the date get skewed, using the below;
date("Y-m-d H:i:s", strtotime('Tue 6/02/2018');
//ends up being Y-d-m
I have set the timezone earlier using
date_default_timezone_set('Australia/Brisbane');