IntlCalendar::isEquivalentTo()函數是PHP中的內置函數,用於檢查給定日曆是否相等但時間不同。
用法:
- 麵向對象的風格
bool IntlCalendar::isEquivalentTo( IntlCalendar $other )
- 程序風格
bool intlcal_is_equivalent_to( IntlCalendar $cal, IntlCalendar $other )
參數:此函數使用上麵提到和下麵描述的兩個參數:
- $cal:此參數保存IntlCalendar對象的資源。
- $other:此參數保存要進行比較的另一個日曆。
返回值:如果日曆等效,則該函數將返回TRUE,但可能會超出其設置時間;如果未設置參數的值,則將返回錯誤。
以下示例程序旨在說明PHP中的IntlCalendar::isEquivalentTo()函數:
程序:
<?php
// Set the DateTime zone
ini_set('date.timezone', 'Asia/Calcutta');
// Create an instance of IntlCalendar
$calendar1 = IntlCalendar::createInstance('Asia/Calcutta');
// Create an instance of another IntlCalendar
$calendar2 = IntlCalendar::createInstance();
// Check whether another calendar is equal
// but for a different time
var_dump($calendar1->isEquivalentTo($calendar2));
// Create a DateTime object
$calendar1 = IntlCalendar::fromDateTime('2019-09-24');
// Set the date to another DateTime object
$calendar2->set(2019, 8, 24);
// Check whether another calendar is equal
// but for a different time
var_dump($calendar1->isEquivalentTo($calendar2));
?>
輸出:
bool(true) bool(true)
參考: https://www.php.net/manual/en/intlcalendar.isequivalentto.php
相關用法
- PHP IntlCalendar add()用法及代碼示例
- PHP IntlCalendar after()用法及代碼示例
- PHP IntlCalendar set()用法及代碼示例
- PHP IntlCalendar before()用法及代碼示例
- PHP IntlCalendar get()用法及代碼示例
- PHP IntlCalendar roll()用法及代碼示例
- PHP IntlCalendar isWeekend()用法及代碼示例
- PHP IntlCalendar setTimeZone()用法及代碼示例
- PHP IntlCalendar getAvailableLocales()用法及代碼示例
- PHP IntlCalendar isSet()用法及代碼示例
- PHP IntlCalendar inDaylightTime()用法及代碼示例
- PHP IntlCalendar getTimeZone()用法及代碼示例
- PHP IntlCalendar getLeastMaximum()用法及代碼示例
- PHP IntlCalendar setTime()用法及代碼示例
- PHP IntlCalendar toDateTime()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlCalendar isEquivalentTo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。