Open In App

PHP | date_timestamp_get() Function

Last Updated : 17 Sep, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The date_timestamp_get() function is an inbuilt function in PHP which is used to gets the Unix timestamp. This function returns the Unix timestamp representing the date. Syntax:
  • Procedural style:
    int date_timestamp_get( $object )
  • Object oriented style:
    int DateTime::getTimestamp( void )
    int DateTimeImmutable::getTimestamp( void )
    int DateTimeInterface::getTimestamp( void )
Parameters: This function accepts single parameter $object which is a mandatory. It is used to specify the DateTime object which is returned by the date_create() function. It is used in procedural style only. The object oriented style does not accept any parameter. Return Value: This function returns the Unix timestamp representing the date. Below programs illustrate the date_timestamp_get() function in PHP: Program 1: php
<?php

// Create DateTime object
$date = date_create();

// Display Unix timestamp date
echo date_timestamp_get($date);
?>
Output:
1537162804
Program 2: php
<?php

// Create DateTime object
$date = new DateTime();

// Display Unix timestamp date
echo $date->getTimestamp();
?>
Output:
1537162805
Related Articles: Reference: http://php.net/manual/en/datetime.gettimestamp.php

Next Article
Practice Tags :

Similar Reads