Try the following:
$timestamp = mktime(0,0,0,1,$day,$year);
It will create a timestamp where the time is set to 0:00:00. (I'm not sure that he will behave correctly in relation to summer savings, though ...)
Read the PHP manual for more details: PHP: mktime - Manual
source share