Skip to content

Instantly share code, notes, and snippets.

View ztane's full-sized avatar

Antti Haapala ztane

View GitHub Profile
<?php
#Equivalent to this PHP codes:
$gmt_timezone = new DateTimeZone('GMT');
$obj_date = new DateTime(null,$gmt_timezone);
echo $obj_date->format('d/m/Y h:i:s');
#OR
date_default_timezone_set("GMT");
echo date('d/m/Y h:i:s', time());
?>