IntlDateFormatter::formatObject()函數是PHP中的內置函數,用於格式化IntlDateFormatter對象。此函數允許格式化IntlCalendar或DateTime對象。
用法:
- 麵向對象的樣式:
string IntlDateFormatter::formatObject( object $object, mixed $format = NULL, string $locale = NULL )
- 程序風格:
string datefmt_format_object( object $object, mixed $format = NULL, string $locale = NULL )
參數:此函數接受上述和以下所述的三個參數:
- object:此參數保存IntlCalendar或DateTime類型的對象。
- format:此參數保存日期格式,以給定格式設置日期。可以使用具有兩個值的數組(第一個設置日期樣式,第二個設置時間樣式。常量是IntlDateFormatter::NONE,IntlDateFormatter::SHORT,IntlDateFormatter::MEDIUM,IntlDateFormatter::LONG,IntlDateFormatter::FULL),整數或字符串格式。 NULL值用於默認樣式。
- locale:此參數保存使用的語言環境。 NULL值用於默認語言環境。
返回值:如果成功,此函數以給定格式返回字符串;如果失敗,則返回False。
以下示例程序旨在說明PHP中的IntlDateFormatter::formatObject()函數:
程序:
<?php
// Set the timezone and locale
ini_set('date.timezone', 'Asia/Calcutta');
ini_set('intl.default_locale', 'en_US');
// Create an IntlCalendar from a DateTime object or string
$calander = IntlCalendar::fromDateTime('2019-10-05 09:19:29');
// Display the date in given format
echo "Default date format => " .
IntlDateFormatter::formatObject($calander) . "\n";
// Display the date in given format
echo "Date in string format => " .
IntlDateFormatter::formatObject($calander,
"dd MM yyyy") . "\n";
// Display the date in given format
echo "Date in long format => " .
IntlDateFormatter::formatObject($calander,
IntlDateFormatter::TRADITIONAL) . "\n";
// Display the date in given format
echo "Date in array format => ",
IntlDateFormatter::formatObject($calander,
array(
IntlDateFormatter::NONE,
IntlDateFormatter::FULL)
);
?>
輸出:
Default date format => Oct 5, 2019, 9:19:29 AM Date in string format => 05 10 2019 Date in long format => Saturday, October 5, 2019 at 9:19:29 AM India Standard Time Date in array format => 9:19:29 AM India Standard Time
參考: https://www.php.net/manual/en/intldateformatter.formatobject.php
相關用法
- PHP IntlDateFormatter getDateType()用法及代碼示例
- PHP IntlDateFormatter format()用法及代碼示例
- PHP IntlDateFormatter getCalendar()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- CSS rgb()用法及代碼示例
- PHP dir()用法及代碼示例
- p5.js int()用法及代碼示例
- p5.js hex()用法及代碼示例
- CSS url()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlDateFormatter formatObject() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。