How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?
05/Feb/2010:14:00:01
Try this:
$new_date=date('d-m-Y', strtotime($date));