eio_write
(PECL eio >= 0.0.1dev)
eio_write — ファイルに書き込む
説明
eio_write(
mixed
string
int
int
int
callable
mixed
): resource
mixed
$fd
,string
$str
,int
$length
= 0,int
$offset
= 0,int
$pri
= EIO_PRI_DEFAULT,callable
$callback
= NULL,mixed
$data
= NULL): resource
eio_write() は、str
の先頭から offset
バイトの位置から、最大で
length
バイトまで書き込みます。
パラメータ
fd
-
ストリーム、ソケットリソース、あるいは数値で表したファイルディスクリプタ (eio_open() が返すものなど)。
str
-
ソース文字列。
length
-
書き込む最大バイト数。
offset
-
ファイルの先頭からのオフセット。
pri
-
リクエストの優先順位。
EIO_PRI_DEFAULT
、EIO_PRI_MIN
、EIO_PRI_MAX
あるいはnull
を指定します。null
を渡した場合、pri
は内部的にEIO_PRI_DEFAULT
となります。 callback
-
callback
関数が、リクエスト終了時にコールされます。 この関数のプロトタイプは、に一致しなければなりません。void callback(mixed $data, int $result[, resource $req]);
data
は、リクエストに渡すカスタムデータです。
result
にはリクエスト固有の結果が格納されます。基本的には、対応するシステムコールが返すそのままの値となります。
req
はオプションで指定するリクエストリソースです。 eio_get_last_error() のような関数で使えます。
data
-
callback
に渡す任意の引数。
戻り値
eio_write()
は、成功した場合にリクエストリソースを返します。失敗した場合に false
を返します
参考
- eio_open() - ファイルを開く
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google