Mega Code Archive

 
Categories / Php / Date Time
 

Setting Time Zones and GMTUTC

<?php   $ts = time();   echo date('r', $ts) . "<br />\n";   echo date('r', $ts) . "<br />\n";   echo strftime("%D %T %Z", $ts) . "<br />\n"; ?>