Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

eio_futime(3) [php man page]

EIO_FUTIME(3)								 1							     EIO_FUTIME(3)

eio_futime - Change file last access and modification times

SYNOPSIS
resource eio_futime (mixed $fd, float $atime, float $mtime, [int $pri = EIO_PRI_DEFAULT], [callable $callback = NULL], [mixed $data = NULL]) DESCRIPTION
eio_futime(3) changes file last access and modification times. PARAMETERS
o $fd - Stream, Socket resource, or numeric file descriptor, e.g. returned by eio_open(3) o $atime - Access time o $mtime - Modification time o $pri -The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL. If NULL passed, $pri internally is set to EIO_PRI_DEFAULT. o $callback -$callback function is called when the request is done. It should match the following prototype: void callback(mixed $data, int $result[, resource $req]); o $data -is custom data passed to the request. o $result -request-specific result value; basically, the value returned by corresponding system call. o $req -is optional request resource which can be used with functions like eio_get_last_error(3) o $data - Arbitrary variable passed to $callback. RETURN VALUES
eio_futime(3) returns request resource on success or FALSE on error. SEE ALSO eio_utime. PHP Documentation Group EIO_FUTIME(3)

Check Out this Related Man Page

EIO_FCHMOD(3)								 1							     EIO_FCHMOD(3)

eio_fchmod - Change file permissions.

SYNOPSIS
resource eio_fchmod (mixed $fd, int $mode, [int $pri = EIO_PRI_DEFAULT], [callable $callback = NULL], [mixed $data = NULL]) DESCRIPTION
eio_fchmod(3) changes permissions for the file specified by $fd file descriptor. PARAMETERS
o $fd - Stream, Socket resource, or numeric file descriptor, e.g. returned by eio_open(3). o $mode - The new permissions. E.g. 0644. o $pri -The request priority: EIO_PRI_DEFAULT, EIO_PRI_MIN, EIO_PRI_MAX, or NULL. If NULL passed, $pri internally is set to EIO_PRI_DEFAULT. o $callback -$callback function is called when the request is done. It should match the following prototype: void callback(mixed $data, int $result[, resource $req]); o $data -is custom data passed to the request. o $result -request-specific result value; basically, the value returned by corresponding system call. o $req -is optional request resource which can be used with functions like eio_get_last_error(3) o $data - Arbitrary variable passed to $callback. RETURN VALUES
eio_fchmod(3) returns request resource on success or FALSE on error. SEE ALSO eio_fchown. PHP Documentation Group EIO_FCHMOD(3)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

read() without changing atime ?

Hey, First of all I want to know How do I see the atime of a file ?? Whats the command ?? I think ls -l shows the last modified time right ? Because when I use cat to read a file, the timestamp shown by ls -l does not change. Its not ls -lu ! man ls did not help ! How do I see the last... (8 Replies)
Discussion started by: tantric
8 Replies

2. Tips and Tutorials

mtime, ctime, and atime

Unix keeps 3 timestamps for each file: mtime, ctime, and atime. Most people seem to understand atime (access time), it is when the file was last read. There does seem to be some confusion between mtime and ctime though. ctime is the inode change time while mtime is the file modification time. ... (2 Replies)
Discussion started by: Perderabo
2 Replies

3. Shell Programming and Scripting

Displaying the Last Modification Time of a specific file

How can I get and display the last modification time of a file? in scripting or specifically using Batch file I want this info for me to determine whether an image has been edited or not by using the last modification time and compare it to our stored date of modification. can somebody help... (5 Replies)
Discussion started by: jaque18
5 Replies

4. UNIX for Dummies Questions & Answers

Assign mtime to a variable

hi All.. how to print mtime of a file and assign it to a variable.?? (1 Reply)
Discussion started by: srinath52069
1 Replies