Neueste Web-Entwicklung Tutorials
 

PHP ftp_raw() Function

<PHP FTP - Referenz

Beispiel

Connect-Server FTP und Befehle ausführen:

<?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");

?>

Definition und Verwendung

Die ftp_raw() Funktion sendet einen rohen Befehl an den FTP - Server.

Syntax

ftp_raw( ftp_connection,command );

Parameter Beschreibung
ftp_connection Erforderlich. Gibt die FTP-Verbindung zu verwenden,
command Erforderlich. Gibt den Befehl auszuführen

Technische Details

Rückgabewert: Gibt die Antwort des Servers als ein Array von Strings
PHP Version: 5+

<PHP FTP - Referenz