PHP 8.5.0 Alpha 2 available for testing

IntlCalendar::after

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

IntlCalendar::afterVerifica si el objeto tiempo actual está en el futuro respecto al objeto tiempo pasado

Descripción

Estilo orientado a objetos

public IntlCalendar::after(IntlCalendar $other): bool

Estilo procedimental

intlcal_after(IntlCalendar $calendar, IntlCalendar $other): bool

Verifica si el objeto tiempo actual está en el futuro respecto al objeto tiempo pasado.

Parámetros

calendar

An IntlCalendar instance.

other

El calendario para el cual el tiempo será verificado respecto al tiempo del objeto primario.

Valores devueltos

Retorna true si el objeto tiempo actual está en el futuro respecto al tiempo del argumento calendar. Retorna false en caso contrario.

On failure false is also returned. To detect error conditions use intl_get_error_code(), or set up Intl to throw exceptions.

Ejemplos

Ejemplo #1 Ejemplo con 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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top