Exemple
Se connecter à un serveur FTP et exécuter des commandes:
<?php
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
// the two lines
below is the same as: ftp_login($ftp_conn,"john","secretpassword");
ftp_raw($ftp_conn, "USER john");
ftp_raw($ftp_conn, "PASS
secretpassword");
?>
Définition et utilisation
Le ftp_raw() fonction envoie une commande brute au serveur FTP.
Syntaxe
ftp_raw( ftp_connection,command );
Paramètre | La description |
---|---|
ftp_connection | Champs obligatoires. Indique la connexion FTP à utiliser |
command | Champs obligatoires. Indique la commande à exécuter |
Détails techniques
Valeur de retour: | Renvoie la réponse du serveur comme un tableau de chaînes |
---|---|
PHP Version: | 5+ |
<PHP FTP Référence