date::mysql PHP Method

mysql() public static method

* All database dates are stored as GMT
public static mysql ( $date )
    public static function mysql($date)
    {
        $date = new DateTime($date, new DateTimeZone('GMT'));
        return $date->format('Y-m-d H:i:s');
    }