Jelix 1.6.40

jDuration
in package

Utility to manipulate durations between two instants

Tags
subpackage

utils

Table of Contents

$days  : mixed
$months  : mixed
$seconds  : mixed
__construct()  : mixed
Construct a new duration.
add()  : mixed
Add a duration to the current duration
mult()  : mixed
Multiply the current duration by an integer

Properties

Methods

__construct()

Construct a new duration.

public __construct(int|array<string|int, mixed> $init) : mixed

You can specify the duration as a number of seconds, or as an associative array which may contain the keys "year", "month", "day", "hour", "minute" and "second". The former method defines an absolute duration (it will always add the same number of seconds to any given date/time), while the latter defines a relative duration (a duration of one month will for example represent different amounts of time depending on the start date).

This class represents years as 12 months, minutes as 60 seconds and hours as 3600 seconds. There is no general conversion between months and days, nor between days and hours (because of DST).

Parameters
$init : int|array<string|int, mixed>

representation of the duration as an absolute number of seconds, or an array.

Return values
mixed

mult()

Multiply the current duration by an integer

public mult(int $scale) : mixed
Parameters
$scale : int

the scaling integer

Return values
mixed

Search results