<?php
// リモートファイルへのパス。
$remote_file = 'somefile.txt';
$local_file = 'localfile.txt';
// 書き込み用のファイルをオープンします。
$handle = fopen($local_file, 'w');
// 接続を確立します。
$ftp = ftp_connect($ftp_server);
// ユーザー名とパスワードを指定してログインします。
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
// $remote_file をダウンロードし、$handle に保存しようとします。
if (ftp_fget($ftp, $handle, $remote_file, FTP_ASCII, 0)) {
echo "successfully written to $local_file\n";
} else {
echo "There was a problem while downloading $remote_file to $local_file\n";
}
// 接続およびファイルハンドラを閉じます。
ftp_close($ftp);
fclose($handle);
?>