Wednesday, September 25, 2024
Google search engine
HomeLanguagesPHP | date_timestamp_set() Function

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:

  • Procedural style:
    date_timestamp_set( $object, $unixtimestamp )
  • Object oriented style:
    DateTime::setTimestamp( $unixtimestamp )

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

  • $object: It is a mandatory parameter which is used to specify the DateTime object which is returned by the date_create() function.
  • $unixtimestamp: This parameter is used to set the Unix timestamp representing the date.

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments