parrotcode: PHP file Standard Library | |
Contents | Language Implementations | Pipp |
php_file.pir - PHP file Standard Library
bool copy(string source_file, string destination_file)
bool fclose(resource fp)
bool feof(resource fp)
bool fflush(resource fp)
string fgetc(resource fp)
array fgetcsv(resource fp [,int length [, string delimiter [, string enclosure]]])
string fgets(resource fp[, int length])
string fgetss(resource fp [, int length, string allowable_tags])
array file(string filename [, int flags[, resource context]])
string file_get_contents(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])
int file_put_contents(string file, mixed data [, int flags [, resource context]])
bool flock(resource fp, int operation [, int &wouldblock])
bool fnmatch(string pattern, string filename [, int flags])
resource fopen(string filename, string mode [, bool use_include_path [, resource context]])
int fpassthru(resource fp)
int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])
string fread(resource fp, int length)
mixed fscanf(resource stream, string format [, string ...])
int fseek(resource fp, int offset [, int whence])
array fstat(resource fp)
int ftell(resource fp)
bool ftruncate(resource fp, int size)
int fwrite(resource fp, string str [, int length])
array get_meta_tags(string filename [, bool use_include_path])
bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
int pclose(resource fp)
resource popen(string command, string mode)
int readfile(string filename [, bool use_include_path[, resource context]])
string realpath(string path)
bool rename(string old_name, string new_name[, resource context])
bool rewind(resource fp)
bool rmdir(string dirname[, resource context])
string sys_get_temp_dir()
string tempnam(string dir, string prefix)
resource tmpfile(void)
int umask([int mask])
bool unlink(string filename[, context context])
|