| |
Basename |
Retourne le nom du fichier d'une chaine contenant un nom de fichier qualifié |
| |
|
string basename( string path )
|
| |
chgrp |
Change le groupe propriétaire d'un fichier |
| |
|
int chgrp( string filename, mixed group )
|
| |
chmod |
Change les attributs de permission d'un fichier |
| |
|
int chmod( string filename, int mode )
|
| |
chown |
Change le propriétaire d'un fichier |
| |
|
int chown( string filename, mixed user )
|
| |
clearstatcache |
Rafraîchit le cache de statut de fichiers |
| |
|
void clearstatcache( void )
|
| |
copy |
Copie un fichier |
| |
|
int copy( string source, string dest )
|
| |
delete |
N'existe pas voir unlink pour les fichiers et unset pour les variables |
| |
|
void delete( string file )
|
| |
dirname |
Retourne la partie relative aux répertoires d'une chaine contenant un nom de fichier qualifié |
| |
|
string dirname( string path )
|
| |
diskfreespace |
Retourne la quantité d'espace disponible sur le disque contenant le répertoire spécifié |
| |
|
float diskfreespace( string directory )
|
| |
fclose |
Ferme un pointeur de fichier |
| |
|
int fclose( int fp )
|
| |
feof |
Teste la fin de fichier sur un pointeur de fichier |
| |
|
int feof( int fp )
|
| |
fgetc |
Lit et retourne un caractère depuis un fichier |
| |
|
string fgetc( int fp )
|
| |
fgetcsv |
Lit et retourne les champs d'un fichier CSV dans un tableau |
| |
|
array fgetcsv( int fp, int length, string [ delimiter ] )
|
| |
fgets |
Lit et retourne une ligne d'un fichier |
| |
|
string fgets( int fp, int length )
|
| |
fgetss |
Lit et retourne une ligne d'un fichier et la débarrasse des tags HTML |
| |
|
string fgetss( int fp, int length )
|
| |
file |
Lit un fichier et retourne sont contenu dans un tableau |
| |
|
array file( string filename )
|
| |
file_exists |
Teste l'existance d'un fichier |
| |
|
int file_exists( string filename )
|
| |
fileatime |
Retourne la dernière date d'accès à un fichier |
| |
|
int fileatime( string filename )
|
| |
filectime |
Retourne la date de modification d'une inode |
| |
|
int filectime( string filename )
|
| |
filegroup |
Retourne le groupe du propriétaire d'un fichier |
| |
|
int filegroup( string filename )
|
| |
fileinode |
Retourne l'identifiant de l'inode d'un fichier |
| |
|
int fileinode( string filename )
|
| |
filemtime |
Retourne la date de modification d'un fichier |
| |
|
int filemtime( string filename )
|
| |
fileowner |
Retourne le propriétaire d'un fichier |
| |
|
int fileowner( string filename )
|
| |
fileperms |
Retourne les attributs de permission d'un fichier |
| |
|
int fileperms( string filename )
|
| |
filesize |
Retourne la taille d'un fichier |
| |
|
int filesize( string filename )
|
| |
filetype |
Retourne le type d'un fichier |
| |
|
string filetype( string filename )
|
| |
flock |
Pose un verrou sur un fichier |
| |
|
bool flock( int fp, int operation )
|
| |
fopen |
Ouvre un fichier ou une URL |
| |
|
int fopen( string filename, string mode )
|
| |
fpassthru |
Lit jusqu'à la fin de fichier et produit le contenu sur la sortie standard |
| |
|
int fpassthru( int fp )
|
| |
fputs |
Écrit dans un fichier |
| |
|
int fputs( int fp, string str, int [ length ] )
|
| |
fread |
Lit les n prochains octets d'un fichier |
| |
|
string fread( int fp, int length )
|
| |
fseek |
Déplace le pointeur à une position donnée |
| |
|
int fseek( int fp, int offset )
|
| |
ftell |
Retourne la position du pointeur interne |
| |
|
int ftell( int fp )
|
| |
fwrite |
Écrit une chaîne dans un fichier |
| |
|
int fwrite( int fp, string string, int [ length ] )
|
| |
is_dir |
Indique si le fichier spécifié est un répertoire |
| |
|
bool is_dir( string filename )
|
| |
is_executable |
Indique si le fichier spécifié est exécutable |
| |
|
bool is_executable( string filename )
|
| |
is_file |
Indique si le fichier spécifié est un fichier standard |
| |
|
bool is_file( string filename )
|
| |
is_link |
Indique si le fichier spécifié est un lien symbolique |
| |
|
bool is_link( string filename )
|
| |
is_readable |
Indique si le fichier spécifié est lisible |
| |
|
bool is_readable( string filename )
|
| |
is_writeable |
Indique si le fichier spécifié est accessible en écriture |
| |
|
bool is_writeable( string filename )
|
| |
link |
Crée un lien symbolique |
| |
|
int link( string target, string link )
|
| |
linkinfo |
Retourne des informations sur un lien |
| |
|
int linkinfo( string path )
|
| |
lstat |
Retourne des informations sur un lien symbolique ou un fichier |
| |
|
array lstat( string filename )
|
| |
mkdir |
Crée un répertoire |
| |
|
int mkdir( string pathname, int mode )
|
| |
pclose |
Ferme un pointeur sur un tube |
| |
|
int pclose( int fp )
|
| |
popen |
Ouvre un pointeur sur un tube |
| |
|
int popen( string command, string mode )
|
| |
readfile |
Lit un fichier et produit son contenu sur la sortie standard |
| |
|
int readfile( string filename )
|
| |
readlink |
Retourne le fichier pointé par un lien symbolique |
| |
|
string readlink( string path )
|
| |
rename |
Renomme un fichier |
| |
|
int rename( string oldname, string newname )
|
| |
rewind |
Réinitialise le pointeur de caractère d'un fichier |
| |
|
int rewind( int fp )
|
| |
rmdir |
Supprime un répertoire |
| |
|
int rmdir( string dirname )
|
| |
set_file_buffer |
Ajoute un tampon pour les entrée/sorties sur un fichier |
| |
|
int fwrite( int fp, int buffer )
|
| |
stat |
Retourne des informations sur un fichier |
| |
|
array stat( string filename )
|
| |
symlink |
Crée un lien symbolique |
| |
|
int symlink( string target, string link )
|
| |
tempnam |
Crée un fichier temporaire possédant un nom unique |
| |
|
string tempnam( string dir, string prefix )
|
| |
touch |
Modifie la date/heure de modification d'un fichier |
| |
|
int touch( string filename, int time )
|
| |
umask |
Change ou retourne la valeur du masque de création de fichiers |
| |
|
int umask( int mask )
|
| |
unlink |
Supprime un fichier |
| |
|
int unlink( string filename )
|