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

IntlCalendar::setTime - Set the calendar time in milliseconds since the epoch | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

IntlCalendar::setTime

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1)

IntlCalendar::setTimeSet the calendar time in milliseconds since the epoch

説明

オブジェクト指向型

public bool IntlCalendar::setTime ( float $date )

手続き型

bool intlcal_set_time ( IntlCalendar $cal , float $date )

Sets the instant represented by this object. The instant is represented by a float whose value should be an integer number of milliseconds since the epoch (1 Jan 1970 00:00:00.000 UTC), ignoring leap seconds. All the field values will be recalculated accordingly.

パラメータ

cal

The IntlCalendar resource.

date

An instant represented by the number of number of milliseconds between such instant and the epoch, ignoring leap seconds.

返り値

Returns TRUE on success and FALSE on failure.

例1 IntlCalendar::setTime()

<?php
ini_set
('date.timezone''Europe/Lisbon');
ini_set('intl.default_locale''fr_FR');

$cal = new IntlGregorianCalendar(2013/* May */11200);

echo 
IntlDateFormatter::formatObject($calIntlDateFormatter::FULL), "\n";

/* In Europe/Lisbon, on 2013-10-27 at 0200, the clock goes back one hour and
   the timezone from UTC+01 to UTC+00 */

$cal->setTime(strtotime('2013-10-27 00:30:00 UTC') * 1000.);

echo 
IntlDateFormatter::formatObject($calIntlDateFormatter::FULL), "\n";

$cal->setTime(strtotime('2013-10-27 01:30:00 UTC') * 1000.);

echo 
IntlDateFormatter::formatObject($calIntlDateFormatter::FULL), "\n";

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

samedi 1 juin 2013 12:00:00 heure avanc?e d’Europe de l’Ouest
dimanche 27 octobre 2013 01:30:00 heure avanc?e d’Europe de l’Ouest
dimanche 27 octobre 2013 01:30:00 heure normale d’Europe de l’Ouest


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

フォーラムで「IntlCalendar::setTime - Set the calendar time in milliseconds since the epoch」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | IntlCalendar::setTime - Set the calendar time in milliseconds since the epoch」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: