Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active November 7, 2019 02:33
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 parzibyte/e19daf21c2a71e265779525cefbcb5b4 to your computer and use it in GitHub Desktop.
Save parzibyte/e19daf21c2a71e265779525cefbcb5b4 to your computer and use it in GitHub Desktop.
<?php
$fecha = date("Y-m-d") . " 00:00:00";
$diaSiguienteMedianoche = date("Y-m-d", strtotime("+1 day", strtotime($fecha))) . " 00:00:00";
echo $fecha; # 2019-11-06 00:00:00
echo $diaSiguienteMedianoche; # 2019-11-07 00:00:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment