eio_rename

(PECL eio >= 0.0.1dev)

eio_rename更改文件的名称或位置

说明

eio_rename(
    string $path,
    string $new_path,
    int $pri = EIO_PRI_DEFAULT,
    callable $callback = NULL,
    mixed $data = NULL
): resource

eio_rename() 将文件重命名或移动到新位置。

参数

path

源路径

new_path

目标路径

pri

请求优先级:EIO_PRI_DEFAULTEIO_PRI_MINEIO_PRI_MAXnull。如果传递 nullpri 内部将设置为 EIO_PRI_DEFAULT

callback

callback 函数在请求完成时被调用。它应该匹配以下原型

void callback(mixed $data, int $result[, resource $req]);
data

是传递给请求的自定义数据。

result

请求特定的结果值;基本上,由相应系统调用返回的值。

req

是可选的请求资源,可以与 eio_get_last_error() 等函数一起使用

data

传递给 callback 的任意变量。

返回值

eio_rename() 在成功时返回请求资源,在失败时返回 false

示例

示例 #1 eio_rename() 示例

<?php
$filename
= dirname(__FILE__)."/eio-temp-file.dat";
touch($filename);
$new_filename = dirname(__FILE__)."/eio-temp-file-new.dat";

function
my_rename_cb($data, $result) {
global
$filename, $new_filename;

if (
$result == 0 && !file_exists($filename) && file_exists($new_filename)) {
@
unlink($new_filename);
echo
"eio_rename_ok";
} else {
@
unlink($filename);
}
}

eio_rename($filename, $new_filename, EIO_PRI_DEFAULT, "my_rename_cb", $filename);
eio_event_loop();
?>

上面的示例将输出类似于以下内容

eio_rename_ok
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top