PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

IntlDateFormatter::getTimeZoneId - IntlDateFormatter が使用するタイムゾーン ID を取得する | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

IntlDateFormatter::getTimeZoneId

datefmt_get_timezone_id

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)

IntlDateFormatter::getTimeZoneId -- datefmt_get_timezone_idIntlDateFormatter が使用するタイムゾーン ID を取得する

説明

オブジェクト指向型

public string IntlDateFormatter::getTimeZoneId ( void )

手続き型

string datefmt_get_timezone_id ( IntlDateFormatter $fmt )

IntlDateFormatter が使用するタイムゾーン ID を取得します。

パラメータ

fmt

Formatter リソース。

返り値

この Formatter が使用するタイムゾーンの ID 文字列を返します。

例1 datefmt_get_timezone_id() の例

<?php
$fmt 
datefmt_create(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'timezone_id of the formatter is : ' datefmt_get_timezone_id($fmt);
datefmt_set_timezone_id($fmt'CN');
echo 
'Now timezone_id of the formatter is : ' datefmt_get_timezone_id($fmt);

?>

例2 オブジェクト指向の例

<?php
$fmt 
= new IntlDateFormatter(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'timezone_id of the formatter is : ' $fmt->getTimezoneId();
$fmt->setTimezoneId('CN');
echo 
'Now timezone_id of the formatter is : ' $fmt->getTimezoneId();

?>

上の例の出力は以下となります。

timezone_id of the formatter is : America/Los_Angeles
Now timezone_id of the formatter is : CN

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「IntlDateFormatter::getTimeZoneId - IntlDateFormatter が使用するタイムゾーン ID を取得する」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | IntlDateFormatter::getTimeZoneId - IntlDateFormatter が使用するタイムゾーン ID を取得する」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: