Derniers tutoriels de développement web
 

PHP ftp_rawlist() Function

<PHP FTP Référence

Exemple

Obtenir la liste des fichiers contenant des informations de fichier:

<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);

// get the file list for /
$filelist = ftp_rawlist($ftp_conn, "/");

// close connection
ftp_close($ftp_conn);

// output $filelist
var_dump($filelist);
?>

La sortie pourrait ressembler à ceci:

array(3)
{
[0] => string(57) "drw-rw-rw- 1 user group 0 Jan 03 08:33 images"
[1] => string(62) "-rw-rw-rw- 1 user group 160 Feb 16 13:54 php"
[2] => string(75) "-rw-rw-rw- 1 user group 20 Feb 14 12:22 test"
}

Définition et utilisation

Le ftp_rawlist() fonction retourne une liste de fichiers contenant des informations de fichiers (from a specified directory on the FTP server) à (from a specified directory on the FTP server) d' (from a specified directory on the FTP server) .

Syntaxe

ftp_rawlist( ftp_connection,dir,recursive );

Paramètre La description
ftp_connection Champs obligatoires. Indique la connexion FTP à utiliser
dir Champs obligatoires. Indique le chemin du répertoire. Peut inclure des arguments pour la commande LIST. Astuce: Utilisez "." pour spécifier le répertoire courant
recursive Optionnel. Par défaut, cette fonction envoie une "LIST" commande au serveur. Cependant, si le paramètre récursif est réglé sur TRUE, il envoie un "LIST -R" commande

Détails techniques

Valeur de retour: Renvoie un tableau où chaque élément correspond à une ligne de texte. Aucune analyse syntaxique est effectuée
PHP Version: 4+
PHP Changelog: Le paramètre récursif a été ajouté en PHP 4.3

<PHP FTP Référence