Skip to content

Instantly share code, notes, and snippets.

@w1cerg
Last active February 8, 2019 07:34
Show Gist options
  • Save w1cerg/dac90c5f08c6d88ed87b8b4f609ad1a9 to your computer and use it in GitHub Desktop.
Save w1cerg/dac90c5f08c6d88ed87b8b4f609ad1a9 to your computer and use it in GitHub Desktop.
PHP
<?php
// Плюс 24 часа к сейчас
$dateYestarday = (new \DateTime())->add(new \DateInterval('P1D'))->format('Y-m-d H:i:s');
// Завтрашнее число время 00:00:00
$dateYestarday = (\DateTime('tomorrow'))->format('Y-m-d H:i:s');
// Год назад
$yearBack = (new \DateTime())->modify('1 year ago');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment