|
IntlCalendar::fieldDifferenceCalculate difference between given time and this objectʼs time BeschreibungObjektorientierter Stil
public int IntlCalendar::fieldDifference
( float
$when
, int $field
)Prozeduraler Stil
int intlcal_field_difference
( IntlCalendar
$cal
, float $when
, int $field
)
Return the difference between the given time and the time this object is
set to, with respect to the quantity specified the
This method is meant to be called successively, first with the most significant field of interest down to the least significant field. To this end, as a side effect, this calendarʼs value for the field specified is advanced by the amount returned. Parameter-Liste
Rückgabewerte
Returns a (signed) difference of time in the unit associated with the
specified fieldIm Fehlerfall wird Beispiele
Beispiel #1 IntlCalendar::fieldDifference
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: Time before: 29 févr. 2012 09:00:11 The difference in time is 1 year(s), 0 month(s), 1 day(s), 0 hour(s) and 19 minute(s) Time after: 1 mars 2013 09:19:11 |