ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


Action unknown: siteexport_addpage
v5:datetime:adodb_gmdate

adodb_gmdate

See Also

PHP Function gmDate()

Syntax
string adodb_gmdate(
  $format,
  optional int $timestamp = false
  )

Deprecated since ADOdb 5.22.6, and removed in 5.23.0. Use 64-bit native PHP functions instead.

Description

This function converts a timestamp to a formatted GMT date. If $timestamp is not defined, the current timestamp is used. Unlike the function gmdate(), it supports dates outside the 1901 to 2038 range.


Usage

$d = adodb_date('m/d/Y H:i:s',-27454896000);
print $d;
/*
* Prints 12/21/1099 17:00:00
*/
 
$d = adodb_gmdate('m/d/Y H:i:s',-27454896000);
print $d;
 
/*
* Prints 12/21/1099 00:00:00
*/
v5/datetime/adodb_gmdate.txt · Last modified: 2023/05/18 18:54 by dregad