Skip to content

Instantly share code, notes, and snippets.

@tasinet
Created October 14, 2012 00:09
Show Gist options
  • Save tasinet/3886691 to your computer and use it in GitHub Desktop.
Save tasinet/3886691 to your computer and use it in GitHub Desktop.
public static function getDateFromMongoId($_id)
{
//first 8 chars of mongoid are hex unix timestamp
$_id = substr( (String)$_id, 0, 8 );
$unix = hexdec($_id);
return date('d/m/Y H:i:s',$unix);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment