====== adodb_gmstrftime ====== ~~NOTOC~~ == See Also == [[http://php.net/manual/en/function.gmstrftime.php|PHP Function gmstrftime()]] == Syntax == string adodb_gmstrftime( $fmt, optional int $timestamp = false ) ===== Description ===== This function converts a timestamp to a formatted GMT date. See [[datetime_library|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 */