PHP 8.5.0 Beta 3 available for testing

Execution Scheduler

(UI 2.0.0)

ใฏใ˜ใ‚ใซ

This facility schedules repetitive execution of a callback, useful for animations and other such activities.

ใ‚ฏใƒฉใ‚นๆฆ‚่ฆ

abstract class UI\Executor {
/* Constructor */
public __construct()
public __construct(int $microseconds)
public __construct(int $seconds, int $microseconds)
/* ใƒกใ‚ฝใƒƒใƒ‰ */
public kill(): void
abstract protected onExecute(): void
public setInterval(int $microseconds): bool
public setInterval(int $seconds, int $microseconds): bool
}

็›ฎๆฌก

๏ผ‹add a note

User Contributed Notes

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