(PECL eio >= 0.0.1dev)
eio_fstat — 获取文件状态
eio_fstat() 在 callback
的 result
参数中返回文件状态信息
fd
流、套接字资源或数字文件描述符。
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_busy() 在成功时返回请求资源,或者在失败时返回 false
。
示例 #1 eio_lstat() 示例
<?php
// 创建临时文件
$tmp_filename = dirname(__FILE__) ."/eio-file.tmp";
touch($tmp_filename);
/* 在 eio_fstat() 完成时被调用 */
function my_res_cb($data, $result) {
// 应该输出包含 stat 信息的数组
var_dump($result);
if ($data['fd']) {
// 关闭临时文件
eio_close($data['fd']);
eio_event_loop();
}
// 删除临时文件
@unlink($data['file']);
}
/* 在 eio_open() 完成时被调用 */
function my_open_cb($data, $result) {
// 为回调准备数据
$d = array(
'fd' => $result,
'file'=> $data
);
// 请求 stat 信息
eio_fstat($result, EIO_PRI_DEFAULT, "my_res_cb", $d);
// 处理请求
eio_event_loop();
}
// 打开临时文件
eio_open($tmp_filename, EIO_O_RDONLY, NULL, EIO_PRI_DEFAULT,
"my_open_cb", $tmp_filename);
eio_event_loop();
?>
以上示例将输出类似于以下内容
array(12) { ["st_dev"]=> int(2050) ["st_ino"]=> int(2489159) ["st_mode"]=> int(33188) ["st_nlink"]=> int(1) ["st_uid"]=> int(1000) ["st_gid"]=> int(100) ["st_rdev"]=> int(0) ["st_blksize"]=> int(4096) ["st_blocks"]=> int(0) ["st_atime"]=> int(1318239506) ["st_mtime"]=> int(1318239506) ["st_ctime"]=> int(1318239506) }