ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:datetime:adodb_gmstrftime

adodb_gmstrftime

See Also

PHP Function gmstrftime()

Syntax
string adodb_gmstrftime(
    $fmt, 
    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. See adodb_strftime() for information about supported locales and format codes.


Usage

$t = adodb_gmmktime(12,10,0,6,20,1066);
print $t;
/*
* Prints -28512215400
*/
$d = adodb_gmstrftime("%b %d %Y %H:%M:%S", $t) . "\n";
print $d;
/*
* Prints Jun 20 1066 12:10:00
*/
v5/datetime/adodb_gmstrftime.txt · Last modified: 2023/05/18 18:53 by dregad