I'm trying to convert an epoch timestamp with php 5.3 with the following statement
date('d-m-Y',strtotime('1349042399999'));
to human readable format and getting wrong result: 01-01-1970
what should return30-09-2012
. I have been searching around and founding the following topic PHP strtotime returns a 1970 date when date column is null but did not help on my case.