PHP 8.4.0 RC4 available for testing

Planificateur d'exécution

(UI 2.0.0)

Introduction

Cela permet de planifier l'exécution répétée d'une fonction de rappel, utile pour les animations et autres activités similaires.

Synopsis de la classe

abstract class UI\Executor {
/* Constructor */
public __construct()
public __construct(int $microseconds)
public __construct(int $seconds, int $microseconds)
/* Méthodes */
public kill(): void
abstract protected onExecute(): void
public setInterval(int $microseconds): bool
public setInterval(int $seconds, int $microseconds): bool
}

Sommaire

add a note

User Contributed Notes

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