(PECL eio >= 0.0.1dev)
eio_custom — 像其他任何eio_*调用一样执行自定义请求
eio_custom() 执行由 execute
指定的自定义函数,就像任何其他 eio_* 调用一样处理它。
execute
指定应匹配以下原型的请求函数
mixed execute(mixed data);
callback
是事件完成回调,应匹配以下原型void callback(mixed data, mixed result);
data
是通过 data
参数传递给 execute
的数据,没有修改 result
值由 execute
返回
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_custom() 在成功时返回请求资源,在失败时返回 false
。
示例 #1 eio_custom() 示例
<?php
/* 自定义回调的回调 */
function my_custom_callback($data, $result) {
var_dump($data);
var_dump(count($result));
var_dump($result['data_modified']);
var_dump($result['result']);
}
/* 自定义请求 */
function my_custom($data) {
var_dump($data);
$result = array(
'result' => 1001,
'data_modified' => "my custom data",
);
return $result;
}
$data = "my_custom_data";
$req = eio_custom("my_custom", EIO_PRI_DEFAULT, "my_custom_callback", $data);
var_dump($req);
eio_event_loop();
?>
上面的示例将输出类似于以下内容
resource(4) of type (EIO Request Descriptor) string(14) "my_custom_data" string(14) "my_custom_data" int(2) string(14) "my custom data" int(1001)