PHP | DateTimeImmutable setTimestamp()函数
DateTimeImmutable::setTimestamp()函数是PHP中的一个内置函数,用于根据 Unix 时间戳设置日期和时间。
句法:
DateTimeImmutable DateTimeImmutable::setTimestamp( int $unixtimestamp )
参数:此函数接受单个参数$unixtimestamp ,用于设置表示日期的 Unix 时间戳。
返回值:此函数返回 DateTimeImmutable 对象。
下面的程序说明了PHP中的 DateTimeImmutable::setTimestamp()函数:
方案一:
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');
?>
输出:
1570187170 = 04-10-2019 11:06:10
方案二:
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');
?>
输出:
1570187171 = 04-10-2019 11:06:11
参考: https://www. PHP.net/manual/en/datetimeimmutable.settimestamp。 PHP