Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suresh-kumara-gist/04d866626fd464c15e08e44d45edaa35 to your computer and use it in GitHub Desktop.
Save suresh-kumara-gist/04d866626fd464c15e08e44d45edaa35 to your computer and use it in GitHub Desktop.
drupal 8 way of creating timestamp
use Drupal\Component\Datetime\DateTimePlus;
$format = "D";
// create current datetime.
$current_date = new DateTimePlus();
// Format $current_date to dispaly, what ever php datetime format you needed. here I am formatting to 'D'
$current_day = $current_date->format($format, ['timezone' => drupal_get_user_timezone()]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment