Why does my strtotime(“today”) not work?

I am trying to create a select list starting from the current date of the user. I want it so that it is set to midnight in unix timestamp format.This is all I'm doing:\[code\]$today = strtotime('today');echo $today;\[/code\]This is my result:\[code\]1333144800\[/code\]which is: Fri, 30 Mar 2012 22:00:00 GMT according to Epoch Converter
 
Top