Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
IntlCalendar::after
(PHP 5.5.0, PECL >= 3.0.0a1)
IntlCalendar::after — Whether this objects time is after that of the passed object
Описание
public bool IntlCalendar::after ( IntlCalendar $calendar )Returns whether this objects time succeeds the arguments time.
Список параметров
calendar -
The calendar whose time will be checked against this objects time.
Возвращаемые значения
Returns TRUE if this objects current time is after that of the calendar arguments time. Returns FALSE otherwise. Also returns FALSE on failure. You can use exceptions or intl_get_error_code() to detect error conditions.
Примеры
Пример #1 IntlCalendar::after()
<?php
$cal1 = IntlCalendar::createInstance();
$cal2 = clone $cal1;
var_dump($cal1->after($cal2), //false
$cal2->after($cal1)); //false
$cal1->roll(IntlCalendar::FIELD_MILLISECOND, true);
var_dump($cal1->after($cal2), //true
$cal2->after($cal1)); //false
Описание класса intlcalendar, примеры использования класса intlcalendar.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru