eio_rename

(PECL eio >= 0.0.1dev)

eio_renameChange the name or location of a file

说锟斤拷

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

eio_rename() renames or moves a file to new location.

锟斤拷锟斤拷

path

Source path

new_path

Target path

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

Arbitrary variable passed to callback.

锟斤拷锟斤拷值

eio_rename() returns request resource on success or FALSE on error.

锟斤拷锟斤拷

Example #1 eio_rename() example

<?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 == && !file_exists($filename) && file_exists($new_filename)) {
        @
unlink($new_filename);
        echo 
"eio_rename_ok";
    } else {
        @
unlink($filename);
    }
}

eio_rename($filename$new_filenameEIO_PRI_DEFAULT"my_rename_cb"$filename);
eio_event_loop();
?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

eio_rename_ok