Skip to content

Instantly share code, notes, and snippets.

@levlas
Created February 1, 2016 11:55
Show Gist options
  • Save levlas/53e36d24220e61c1848d to your computer and use it in GitHub Desktop.
Save levlas/53e36d24220e61c1848d to your computer and use it in GitHub Desktop.
var d = new Date(2012, 2, 23, 23, 0, 0, 0);
d.setUTCDate(d.getDate() + 3);
console.log(d.toLocaleString());
date_default_timezone_set('Europe/Budapest');
echo(
date(
"Y-m-d H:i:s",
mktime(23, 0, 0, 3, 23, 2012)+86400*3
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment