Open In App

PHP | date_timestamp_set() Function

The date_timestamp_set() function is an inbuilt function in PHP which is used to sets the date and time based on an Unix timestamp. This function returns the DateTime object for method chaining or False on failure.

Syntax:



Parameters: This function accepts two parameters as mentioned above and described below:

Return Value: This function returns the DateTime object on success or False on failure.



Below programs illustrate the date_timestamp_set() function in PHP:

Program 1:




<?php
  
// Create DateTime object
$date = date_create();
  
// Display DateTime in given format
echo date_format($date, 'U = d-m-Y H:i:s') . "\n";
  
// date_timestamp_set function to Set
// Unix timestamp
date_timestamp_set($date, 1373502124);
  
// Display DateTime in given format
echo date_format($date, 'U = d-m-Y H:i:s');
?>

Output:
1537159667 = 17-09-2018 04:47:47
1373502124 = 11-07-2013 00:22:04

Program 2:




<?php
   
// Create DateTime object
$date = new DateTime();
  
// Display DateTime in given format
echo $date->format('U = d-m-Y H:i:s') . "\n";
   
// date_timestamp_set function to Set
// Unix timestamp
$date->setTimestamp(1171564674);
  
// Display DateTime in given format
echo $date->format('U = d-m-Y H:i:s');
?>

Output:
1537159667 = 17-09-2018 04:47:47
1171564674 = 15-02-2007 18:37:54

Related Articles:

Reference: http://php.net/manual/en/datetime.settimestamp.php


Article Tags :