Skip to content

Instantly share code, notes, and snippets.

@mkorostoff
Created November 10, 2014 22:50
Show Gist options
  • Save mkorostoff/de511538548022b5e5aa to your computer and use it in GitHub Desktop.
Save mkorostoff/de511538548022b5e5aa to your computer and use it in GitHub Desktop.
<?php
//drupal 7
$node = node_load(1);
print $node->created; //prints "1415659696"
<?php
//Drupal 8
$node = \Drupal\node\Entity\Node::load(1)
print $node->getCreatedTime();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment