XXXIIIFTP 関数
この拡張モジュールの関数は、http://www.faqs.org/rfcs/rfc959.htmlで定義された File Transfer
Protocol (FTP)を使用してファイルサーバにアクセスするクライアントの
実装です。
FTP モジュールを使用する際、次の定数が定義されます。
FTP_ASCIIおよびFTP_BINARY
PHPの設定でFTP関数を使用するためには、PHP 4をインストールする場合、
オプション
--enable-ftp、PHP 3を使用している場合には、
--with-ftpを使用する必要があります。
例 1ftp() の例 <?php
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// check connection
if ((!$conn_id) || (!$login_result)) {
echo "Ftp connection has failed!";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
die;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}
// upload the file
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
// check upload status
if (!$upload) {
echo "Ftp upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}
// close the FTP stream
ftp_close($conn_id);
?> |
|