ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:datetime:adodb_gmdate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
datetime:adodb_gmdate [2015/11/26 15:35] – created mnewnhamdatetime:adodb_gmdate [2015/12/03 23:48] mnewnham
Line 12: Line 12:
 ===== Description ===== ===== 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. 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 =====
 +<code php>
 +$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
 +*/
 +</code>
v5/datetime/adodb_gmdate.txt · Last modified: 2023/05/18 18:54 by dregad