connection_aborted | PHP 3.0.7 |
int connection_aborted(void) |
|
クライアントが切断されている場合は、true を返します。 |
connection_status | PHP 3.0.7 |
int connection_status(void) |
|
接続のステータスビットフィールドを返します。 |
constant | PHP 4.0.4 |
mixed constant(string const_name) |
|
定数の名前を指定して、関連付けられている値を返します。 |
define | PHP 3.0 |
bool define(string constant_name, mixed value, case_sensitive=true) |
|
新しい定数を定義します。 |
defined | PHP 3.0 |
bool defined(string constant_name) |
|
定数が存在するかどうかをチェックします。 |
eval | PHP 3.0 |
mixed eval(string code_str) |
|
文字列を PHP コードとして評価します。 |
exit [([mixed status])] | PHP 3.0 |
exit [([mixed status])] |
|
スクリプトの実行を停止し、終了直前にステータスを出力する言語キーワード。 |
highlight_file | PHP 4.0 |
bool highlight_file(string file_name[, bool return] ) |
|
ソースファイルに構文のハイライト表示を追加します。 |
highlight_string | PHP 4.0 |
bool highlight_string(string string[, bool return] ) |
|
文字列に構文のハイライト表示を追加します。オプションで、構文のハイライト表示を返すこともできます。 |
ignore_user_abort | PHP 3.0.7 |
int ignore_user_abort(bool value) |
|
ユーザーからの中断処理を無視するかどうかを設定します。 |
leak | PHP 3.0 |
void leak(int num_bytes=3) |
|
テストやデバッグのためにメモリをリークします。 |
pack | PHP 3.0 |
string pack(string format, mixed arg1[, mixed arg2[, mixed ...]]) |
|
指定された 1 つ以上の引数を format 引数に従ってバイナリ文字列にパックします。 |
sleep | PHP 3.0 |
void sleep(int seconds) |
|
指定された秒数だけ遅延します。 |
uniqid | PHP 3.0 |
string uniqid(string prefix[, bool more_entropy]) |
|
一意の ID を生成します。 |
unpack | PHP 3.0 |
array unpack(string format, string input) |
|
format 引数に従ってバイナリ文字列を配列要素にアンパックします。 |
usleep | PHP 3.0 |
void usleep(int micro_seconds) |
|
指定されたマイクロ秒だけ遅延します。 |