NAME ^

php_filestat.pir - PHP filestat Standard Library

DESCRIPTION ^

Functions ^

bool chgrp(string filename, mixed group)
Change file groupNOT IMPLEMENTED.
bool chmod(string filename, int mode)
Change file modeNOT IMPLEMENTED.
bool chown(string filename, mixed user)
Change file ownerNOT IMPLEMENTED.
bool chown(string filename, mixed user)
Change file ownerNOT IMPLEMENTED.
void clearstatcache(void)
Clear file stat cacheNOT IMPLEMENTED.
float disk_free_space(string path)
Get free disk space for filesystem that path is onNOT IMPLEMENTED.
float disk_total_space(string path)
Get total disk space for filesystem that path is onNOT IMPLEMENTED.
bool file_exists(string filename)
Returns true if filename exists
int fileatime(string filename)
Get last access time of file
int filectime(string filename)
Get inode modification time of file
int filegroup(string filename)
Get file group
int fileinode(string filename)
Get file inode
int filemtime(string filename)
Get last modification time of file
int fileowner(string filename)
Get file owner
int fileperms(string filename)
Get file permissions
int filesize(string filename)
Get file size
string filetype(string filename)
Get file typeNOT IMPLEMENTED.
bool is_dir(string filename)
Returns true if file is directory
bool is_executable(string filename)
Returns true if file is executableNOT IMPLEMENTED.
bool is_file(string filename)
Returns true if file is a regular fileNOT IMPLEMENTED.
bool is_link(string filename)
Returns true if file is symbolic linkNOT IMPLEMENTED.
bool is_readable(string filename)
Returns true if file can be readNOT IMPLEMENTED.
bool is_writable(string filename)
Returns true if file can be writtenNOT IMPLEMENTED.
bool lchgrp(string filename, mixed group)
Change symlink groupNOT IMPLEMENTED.
array lstat(string filename)
Give information about a file or symbolic linkNOT IMPLEMENTED.
array stat(string filename)
Give information about a fileNOT IMPLEMENTED.
bool touch(string filename [, int time [, int atime]])
Set modification time of fileNOT IMPLEMENTED.


parrot