La función DateTimeImmutable::setTimestamp() es una función incorporada en PHP que se utiliza para establecer la fecha y la hora en función de una marca de tiempo de Unix.
Sintaxis:
DateTimeImmutable DateTimeImmutable::setTimestamp( int $unixtimestamp )
Parámetros: esta función acepta un solo parámetro $unixtimestamp que se utiliza para establecer la marca de tiempo de Unix que representa la fecha.
Valores devueltos: esta función devuelve el objeto DateTimeImmutable.
Los siguientes programas ilustran la función DateTimeImmutable::setTimestamp() en PHP:
Programa 1:
<?php // PHP program to illustrate DateTimeImmutable::setTimestamp() // function // Creating a new DateTimeImmutable() object $datetimeImmutable = new DateTimeImmutable(); // Initialising a unixtimestamp $unixtimestamp = '1171564674'; // Calling the DateTimeImmutable::setTimestamp() function $a = $datetimeImmutable->setTimestamp($unixtimestamp); // Getting a new set of date and time in the // format of 'U = d-m-Y H:i:s' echo $datetimeImmutable->format('U = d-m-Y H:i:s'); ?>
Producción:
1570187170 = 04-10-2019 11:06:10
Programa 2:
<?php // PHP program to illustrate DateTimeImmutable::setTimestamp() // function // Creating a new DateTimeImmutable() object $datetimeImmutable = new DateTimeImmutable(); // Calling the DateTimeImmutable::setTimestamp() function // with the parameter of unixtimestamp $a = $datetimeImmutable->setTimestamp(1291564453); // Getting a new set of date and time in the // format of 'U = d-m-Y H:i:s' echo $datetimeImmutable->format('U = d-m-Y H:i:s'); ?>
Producción:
1570187171 = 04-10-2019 11:06:11
Referencia: https://www.php.net/manual/en/datetimeimmutable.settimestamp.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA