當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP IntlDateFormatter getDateType()用法及代碼示例


IntlDateFormatter::getDateType()函數是PHP中的內置函數,用於獲取用於IntlDateFormatter對象的日期類型。

用法:

  • 麵向對象的樣式:
    int IntlDateFormatter::getDateType( void )
  • 程序風格:
    int datefmt_get_datetype( IntlDateFormatter $fmt )

參數:此函數使用單個參數$fmt,該參數保存格式化程序的資源。


返回值:此函數返回格式化程序的當前日期類型值。

以下示例程序旨在說明PHP中的IntlDateFormatter::getDateType()函數:

程序1:

<?php 
  
// Create a date formatter 
$formatter = datefmt_create( 
    'en_US', 
    IntlDateFormatter::FULL, 
    IntlDateFormatter::FULL, 
    'Asia/Kolkata', 
    IntlDateFormatter::TRADITIONAL, 
    "MM/dd/yyyy"
); 
  
// Get the date/type formatter type 
echo 'Calendar of formatter: '
        . datefmt_get_datetype($formatter) . "\n"; 
   
// Get the format of date/time value as a string 
echo "Formatted calendar output: "
        . datefmt_format( $formatter , 0) . "\n\n"; 
  
// Create a date formatter 
$formatter = datefmt_create( 
    'en_US', 
    IntlDateFormatter::SHORT, 
    IntlDateFormatter::SHORT, 
    'Asia/Kolkata', 
    IntlDateFormatter::TRADITIONAL 
); 
  
// Get the date/type formatter type 
echo 'Calendar of formatter: '
        . datefmt_get_datetype($formatter) . "\n"; 
   
// Get the format of date/time value as a string 
echo "Formatted calendar output: "
        . datefmt_format( $formatter , 0); 
  
?>
輸出:
Calendar of formatter: 0
Formatted calendar output: 01/01/1970

Calendar of formatter: 3
Formatted calendar output: 1/1/70, 5:30 AM

程序2:

<?php 
  
// Create a date formatter 
$formatter = datefmt_create( 
    'en_US', 
    IntlDateFormatter::FULL, 
    IntlDateFormatter::FULL, 
    'Asia/Kolkata', 
    IntlDateFormatter::TRADITIONAL, 
    "MM/dd/yyyy"
); 
  
// Get the date/type formatter type 
echo 'Calendar of formatter: '
        . $formatter->getDateType() . "\n"; 
   
// Get the format of date/time 
// value as a string 
echo "Formatted calendar output: "
        . $formatter->format(0) . "\n\n"; 
  
// Create a date formatter 
$formatter = datefmt_create( 
    'en_US', 
    IntlDateFormatter::SHORT, 
    IntlDateFormatter::SHORT, 
    'Asia/Kolkata', 
    IntlDateFormatter::TRADITIONAL 
); 
  
// Get the date/type formatter type 
echo 'Calendar of formatter: '
        . $formatter->getDateType() . "\n"; 
   
// Get the format of date/time 
// value as a string 
echo "Formatted calendar output: "
        . $formatter->format(0); 
  
?>
輸出:
Calendar of formatter: 0
Formatted calendar output: 01/01/1970

Calendar of formatter: 3
Formatted calendar output: 1/1/70, 5:30 AM

參考: https://www.php.net/manual/en/intldateformatter.getdatetype.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlDateFormatter getDateType() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。