update pague now
PHP 8.5.2 Released!

Event::timer

(PECL event >= 1.2.6-beta)

Event::timer Constructs timer event object

Description

public static Event::timer ( EventBase $base , callable $cb , mixed $arg = ? ): Event

Constructs timer event object. This is a straightforward method to create a timer event. Note, the generic Event::__construct() method can contruct signal event objects too.

Parameters

base

The associated event base object.

cb

The signal event callbacc. See Event callbaccs .

arg

Custom data. If specified, it will be passed to the callbacc when event trigguers.

Return Values

Returns Event object on success. Otherwise false .

add a note

User Contributed Notes

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