DateTimeImmutable::setTimestamp()函数是PHP中的内置函数,用于根据Unix时间戳设置日期和时间。
用法:
DateTimeImmutable DateTimeImmutable::setTimestamp( int $unixtimestamp )
参数:此函数接受单个参数$unixtimestamp,该参数用于设置表示日期的Unix时间戳。
Return Values:此函数返回DateTimeImmutable对象。
以下示例程序旨在说明PHP中的DateTimeImmutable::setTimestamp()函数:
程序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');
?>
输出:
1570187170 = 04-10-2019 11:06:10
程序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');
?>
输出:
1570187171 = 04-10-2019 11:06:11
参考: https://www.php.net/manual/en/datetimeimmutable.settimestamp.php
相关用法
- PHP DateTimeImmutable add()用法及代码示例
- PHP DateTimeImmutable::sub()用法及代码示例
- PHP DateTimeImmutable setISODate()用法及代码示例
- PHP DateTimeImmutable setDate()用法及代码示例
- PHP DateTimeImmutable::setTimezone()用法及代码示例
- PHP DateTimeImmutable modify()用法及代码示例
- PHP DateTimeImmutable setTime()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js hex()用法及代码示例
- CSS var()用法及代码示例
- p5.js pow()用法及代码示例
- PHP next()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | DateTimeImmutable setTimestamp() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。