Exemplo n.º 1
0
 /**
  * Converts a MySQL timestamp to UTC format.
  *
  * @param   string  MySQL timestamp
  * @return  string	UTC timestamp
  */
 public static function mysql2utc($time = "0000-00-00 00:00:00")
 {
     return date::unix2utc(date::mysql2unix($time));
 }