====== adodb_gmdate ======
~~NOTOC~~
== See Also ==
[[http://php.net/manual/en/function.gmdate.php|PHP Function gmDate()]]
== Syntax ==
string adodb_gmdate(
$format,
optional int $timestamp = false
)
[[datetime_index#deprecated|Deprecated]] since ADOdb 5.22.6, and [[https://github.com/ADOdb/ADOdb/issues/970|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
*/