connection_aborted | PHP 3.0.7 |
int connection_aborted(void) |
|
Returns true if client disconnected. |
connection_status | PHP 3.0.7 |
int connection_status(void) |
|
Returns the connection status bitfield. |
constant | PHP 4.0.4 |
mixed constant(string const_name) |
|
Returns the associated value, given the name of a constant. |
define | PHP 3.0 |
bool define(string constant_name, mixed value, case_sensitive=true) |
|
Defines a new constant. |
defined | PHP 3.0 |
bool defined(string constant_name) |
|
Checks whether a constant exists. |
eval | PHP 3.0 |
mixed eval(string code_str) |
|
Evaluates a string as PHP code. |
exit [([mixed status])] | PHP 3.0 |
exit [([mixed status])] |
|
Language keyword that terminates execution of the script and prints status just before exiting. |
highlight_file | PHP 4.0 |
bool highlight_file(string file_name[, bool return] ) |
|
Adds syntax highlighting to a source file. |
highlight_string | PHP 4.0 |
bool highlight_string(string string[, bool return] ) |
|
Adds syntax highlighting to a string and optionally return it. |
ignore_user_abort | PHP 3.0.7 |
int ignore_user_abort(bool value) |
|
Sets whether to ignore a user abort event or not. |
leak | PHP 3.0 |
void leak(int num_bytes=3) |
|
Causes an intentional memory leak for testing/debugging purposes. |
pack | PHP 3.0 |
string pack(string format, mixed arg1[, mixed arg2[, mixed ...]]) |
|
Takes one or more arguments and packs them into a binary string according to the format argument. |
sleep | PHP 3.0 |
void sleep(int seconds) |
|
Delays for a given number of seconds. |
uniqid | PHP 3.0 |
string uniqid(string prefix[, bool more_entropy]) |
|
Generates a unique ID. |
unpack | PHP 3.0 |
array unpack(string format, string input) |
|
Unpacks binary string into named array elements according to format argument. |
usleep | PHP 3.0 |
void usleep(int micro_seconds) |
|
Delays for a given number of microseconds. |