basename PHP 3.0

string basename(string path[, string suffix])

 

Renvoie le composant de nom de fichier du chemin

chgrp PHP 3.0

bool chgrp(string filename, mixed group)

 

Change le groupe de fichiers

chmod PHP 3.0

bool chmod(string filename, int mode)

 

Change le mode de fichiers

chown PHP 3.0

bool chown (string filename, mixed user)

 

Change le propriétaire de fichiers

clearstatcache PHP 3.0

void clearstatcache(void)

 

Supprime le cache stat de fichier

copy PHP 3.0

bool copy(string source_file, string destination_file)

 

Copie un fichier

dirname PHP 3.0

string dirname(string path)

 

Renvoie le nom de répertoire du chemin

disk_free_space PHP 4.1.0

float disk_free_space(string path)

 

Obtient l'espace disque libre pour le système de fichiers auquel mène ce chemin

disk_total_space PHP 4.1.0

float disk_total_space(string path)

 

Obtient l'espace disque total pour le système de fichiers auquel mène ce chemin

fclose PHP 3.0

bool fclose(resource fp)

 

Referme un pointeur de fichiers ouvert

feof PHP 3.0

bool feof(resource fp)

 

Recherche la fin-de-fichier sur un pointeur de fichiers

fflush PHP 4.0.1

bool fflush(resource fp)

 

Aligne le résultat

fgetc PHP 3.0

string fgetc(resource fp)

 

Obtient un caractère du pointeur de fichiers

fgetcsv PHP 3.0.8

array fgetcsv(resource fp, int length[, string delimiter[, string enclosure]])

 

Prend une ligne du pointeur de fichiers et l'analyse en termes de champs CSV

fgets PHP 3.0

string fgets(resource fp[, int length])

 

Prend une ligne du pointeur de fichiers

fgetss PHP 3.0

string fgetss(resource fp, int length[, string allowable_tags])

 

Prend une ligne du pointeur de fichiers et la débarrasse des balises HTML

file_exists PHP 3.0

bool file_exists(string filename)

 

Renvoie true si le nom de fichier existe

file_get_contents PHP 4.3.0

string file_get_contents(string filename[, bool use_include_path])

 

Lit le fichier entier dans une chaîne

file PHP 3.0

array file(string filename[, bool use_include_path])

 

Lit le fichier entier dans un tableau

fileatime PHP 3.0

int fileatime(string filename)

 

Obtient l'heure du dernier accès au fichier

filectime PHP 3.0

int filectime(string filename)

 

Obtient l'heure de la modification d'inode du fichier

filegroup PHP 3.0

int filegroup(string filename)

 

Obtient le groupe de fichier

fileinode PHP 3.0

int fileinode(string filename)

 

Obtient l'inode de fichier

filemtime PHP 3.0

int filemtime(string filename)

 

Obtient l'heure de la dernière modification du fichier

fileowner PHP 3.0

int fileowner(string filename)

 

Trouve le propriétaire du fichier

fileperms PHP 3.0

int fileperms(string filename)

 

Obtient les permissions de fichier

filesize PHP 3.0

int filesize(string filename)

 

Obtient la taille de fichier

filetype PHP 3.0

string filetype(string filename)

 

Obtient le type de fichier

flock PHP 3.0.7

bool flock(resource fp, int operation[, int &wouldblock])

 

Fournit un verrouillage de fichier transférable

fnmatch PHP 4.3.0

bool fnmatch(string pattern, string filename[, int flags])

 

Associe le nom de fichier et le modèle

fopen PHP 3.0

resource fopen(string filename, string mode[, bool use_include_path[, resource context]])

 

Ouvre un fichier ou un URL et renvoie un pointeur de fichier

fpassthru PHP 3.0

int fpassthru(resource fp)

 

Obtient le reste des données d'un pointeur de fichiers

fread PHP 3.0

string fread(resource fp, int length)

 

Permet une lecture de fichier en mode binaire sécurisé

fscanf PHP 4.0.1

mixed fscanf(string str, string format[, string ...])

 

Implémente un fscanf( ) globalement compatible ANSI

fseek PHP 3.0

int fseek(resource fp, int offset[, int whence])

 

Recherche sur un pointeur de fichiers

fstat PHP 4.0

int fstat(resource fp)

 

Effectue stat( ) sur un traitement de fichier

ftell PHP 3.0

int ftell(resource fp)

 

Obtient la position lecture/écriture d'un pointeur de fichiers

ftruncate PHP 4.0

int ftruncate(resource fp, int size)

 

Raccourcit la taille du fichier à size

fwrite PHP 3.0

int fwrite(resource fp, string str[, int length])

 

Permet une écriture de fichier en mode binaire sécurisé

glob PHP 4.3.0

array glob(string pattern[, int flags])

 

Trouve les noms de chemins correspondant à un modèle

is_dir PHP 3.0

bool is_dir(string filename)

 

Renvoie true si le fichier est un répertoire

is_executable PHP 3.0

bool is_executable(string filename)

 

Renvoie true si le fichier peut être exécuté

is_file PHP 3.0

bool is_file(string filename)

 

Renvoie true si le fichier est un fichier habituel

is_readable PHP 3.0

bool is_readable(string filename)

 

Renvoie true si le fichier peut être lu

is_uploaded_file PHP 3.0.1.7

bool is_uploaded_file(string path)

 

Vérifie si le fichier a été créé par chargement RFC 1867

is_writable PHP 4.0

bool is_writable(string filename)

 

Renvoie true si le fichier peut être écrit

linkinfo PHP 3.0

int linkinfo(string filename)

 

Renvoie le champ st_dev de la structure stat d'Unix C qui décrit le lien

lstat PHP 3.0.4

array lstat(string filename)

 

Fournit des informations concernant un fichier ou un lien symbolique

mkdir PHP 3.0

bool mkdir(string pathname[, int mode])

 

Crée un répertoire

move_uploaded_file PHP 4.0.3

bool move_uploaded_file(string path, string new_path)

 

Déplace un fichier si et seulement si il a été créé par téléchargement

parse_ini_file PHP 4.0

array parse_ini_file(string filename[, bool process_sections])

 

Analyse le fichier de configuration

pathinfo PHP 4.0.3

array pathinfo(string path)

 

Renvoie des informations concernant une chaîne donnée

pclose PHP 3.0

int pclose(resource fp)

 

Referme un pointeur de fichiers ouvert par popen( )

popen PHP 3.0

resource popen(string command, string mode)

 

Exécute une commande et lui ouvre un tuyau de lecture ou d'écriture

readfile PHP 3.0

int readfile(string filename[, int use_include_path])

 

Affiche un fichier ou un URL

realpath PHP 4.0

string realpath(string path)

 

Renvoie le chemin déterminé

rename PHP 3.0

bool rename(string old_name, string new_name)

 

Renomme un fichier

rewind PHP 3.0

bool rewind(resource fp)

 

Rembobine la position d'un pointeur de fichier

rmdir PHP 3.0

bool rmdir(string dirname)

 

Supprime un répertoire

set_file_buffer PHP 3.0.8

int set_file_buffer(resource fp, int buffer)

 

Définit le tampon d'écriture du fichier

stat PHP 3.0

array stat(string filename)

 

Fournit des informations concernant un fichier

tempnam PHP 3.0

string tempnam(string dir, string prefix)

 

Crée un nom de fichier unique dans un répertoire

tmpfile PHP 3.0.13

resource tmpfile(void)

 

Crée un fichier temporaire qui sera effacé automatiquement après usage

touch PHP 3.0

bool touch(string filename[, int time[, int atime]])

 

Définit l'heure de modification du fichier

umask PHP 3.0

int umask([int mask])

 

Renvoie ou modifie le umask