📜  PHP | DateTimeImmutable setTime()函数

📅  最后修改于: 2022-05-13 01:56:53.844000             🧑  作者: Mango

PHP | DateTimeImmutable setTime()函数

DateTimeImmutable::setTime()函数是PHP中的一个内置函数,用于通过重置创建的 DateTimeImmutable 对象的当前时间来设置所需时间。
句法:

DateTimeImmutable DateTimeImmutable::setTime( int $hour, int $minute,
                                              int $second, int $microseconds )

参数:该函数接受上面提到的四个参数,如下所述:

  • $hour:该参数用于设置小时时间。
  • $minute:此参数用于设置分钟时间。
  • $second:该参数用于设置第二次。
  • $microseconds:此参数用于设置微秒时间。

返回值:此函数返回一个新的日期时间对象。
下面的程序说明了PHP中的 DateTimeImmutable::setTime()函数:
方案一:

php
setTime($Hour, $Minute, $Second);
 
// Getting a new set of date and time in the
// format of 'Y-m-d H:i:s'
echo $a->format('Y-m-d H:i:s');
?>


php
setTime(10, 33, 39);
 
// Getting a new set of date and time in the
// format of 'Y-m-d H:i:s'
echo $a->format('Y-m-d H:i:s');
?>


输出:
2019-10-04 04:10:40

方案二:

PHP

setTime(10, 33, 39);
 
// Getting a new set of date and time in the
// format of 'Y-m-d H:i:s'
echo $a->format('Y-m-d H:i:s');
?>
输出:
2019-10-04 10:33:39

参考: https://www. PHP.net/manual/en/datetimeimmutable.settime。 PHP