DateTimeImmutable::setDate()函數是PHP中的內置函數,用於在創建的DateTimeImmutable對象中設置新日期。
用法:
DateTimeImmutable DateTimeImmutable::setDate( int $year, int $month, int $day )
參數:此函數接受上述和以下所述的三個參數:
- $year:此參數以整數格式保存年份值。
- $month:此參數以整數格式保存月份值。
- $day:此參數以整數格式保存日期值。
返回值:此函數返回新的日期對象。
以下示例程序旨在說明PHP中的DateTimeImmutable::setDate()函數:
示例1:
<?php
// PHP program to illustrate DateTimeImmutable::setDate()
// function
// Creating a new DateTimeImmutable() object
$datetimeImmutable = new DateTimeImmutable();
// Initialising year, month and day
$Year = '2019';
$Month = '10';
$Day = '03';
// Calling the DateTimeImmutable::setDate() function
$a = $datetimeImmutable->setDate($Year, $Month, $Day);
// Getting a new set of date in the
// format of 'Y-m-d'
echo $a->format('Y-m-d');
?>
輸出:
2019-10-03
示例2:
<?php
// PHP program to illustrate DateTimeImmutable::setDate()
// function
// Creating a new DateTimeImmutable() object
$datetimeImmutable = new DateTimeImmutable();
// Calling the setDate() function
// with parameters like years of 2019,
// month of 10 and day of 3
$a = $datetimeImmutable->setDate(2019, 10, 03);
// Getting a new set of date in the
// format of 'Y-m-d'
echo $a->format('Y-m-d');
?>
輸出:
2019-10-03
參考: https://www.php.net/manual/en/datetimeimmutable.setdate.php
相關用法
- PHP DateTime setDate()用法及代碼示例
- PHP DateTimeImmutable::sub()用法及代碼示例
- PHP DateTimeImmutable add()用法及代碼示例
- PHP DateTimeImmutable setTimestamp()用法及代碼示例
- PHP DateTimeImmutable modify()用法及代碼示例
- PHP DateTimeImmutable setISODate()用法及代碼示例
- PHP DateTimeImmutable setTime()用法及代碼示例
- PHP DateTimeImmutable::setTimezone()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP exp()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js abs()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | DateTimeImmutable setDate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。