Skip to content

Instantly share code, notes, and snippets.

@ooscarr
Last active October 18, 2017 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooscarr/d1132dde312fcbbbcc676a290362fbbe to your computer and use it in GitHub Desktop.
Save ooscarr/d1132dde312fcbbbcc676a290362fbbe to your computer and use it in GitHub Desktop.
ṔOSIX time in date in GMT-3 (America/Chile summer time) in PHP
<?php
//Return ṔOSIX time in date in GMT-3 (America/Chile summer time)
$offset=3*60*60; //converting 3 hours to seconds.
echo gmdate("Y-m-d", $_GET['epoch']-$offset);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment