string adodb_gmstrftime( $fmt, optional int $timestamp = false )
This function converts a timestamp to a formatted GMT date. See adodb_strftime() for information about supported locales and format codes.
$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 */