How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?
05/Feb/2010:14:00:01
Use the strtotime function:
strtotime
Example:
$date = "25 december 2009"; $my_date = date('m/d/y', strtotime($date)); echo $my_date;