This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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()); | |
?> |