例
FTPサーバに接続し、コマンドを実行します。
<?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");
?>
定義と使用法
ftp_raw()関数は、FTPサーバに生のコマンドを送信します。
構文
ftp_raw( ftp_connection,command );
パラメーター | 説明 |
---|---|
ftp_connection | 必須。 FTP接続を使用するように指定します |
command | 必須。 実行するコマンドを指定します。 |
技術的な詳細
戻り値: | 文字列の配列として、サーバーの応答を返します。 |
---|---|
PHPバージョン: | 5+ |
<PHP FTPリファレンス