例
ファイル情報とファイルのリストを取得します。
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// get the file
list for /
$filelist = ftp_rawlist($ftp_conn, "/");
// close connection
ftp_close($ftp_conn);
// output $filelist
var_dump($filelist);
?>
出力は次のようになります:
array(3)
{
[0] =>
string(57) "drw-rw-rw- 1 user group 0 Jan 03 08:33 images"
[1] => string(62) "-rw-rw-rw- 1 user group 160 Feb 16 13:54 php"
[2] => string(75) "-rw-rw-rw- 1 user group 20 Feb 14 12:22 test"
}
定義と使用法
ftp_rawlist()関数は、ファイル情報とファイルのリストを返します(from a specified directory on the FTP server) 。
構文
ftp_rawlist( ftp_connection,dir,recursive );
パラメーター | 説明 |
---|---|
ftp_connection | 必須。 FTP接続を使用するように指定します |
dir | 必須。 ディレクトリのパスを指定します。 LISTコマンドの引数を含むことができます。 ヒント:使用"." カレントディレクトリを指定するには |
recursive | 任意。 デフォルトでは、この機能は、送信"LIST"コマンドをサーバに。 recursiveパラメータがTRUEに設定されている場合は、それが送る"LIST -R"コマンドを |
技術的な詳細
戻り値: | 各要素は、テキストの一つの行に対応する配列を返し。 何の解析は実行されません |
---|---|
PHPバージョン: | 4+ |
PHPの変更ログ: | 再帰的なパラメータは、PHP 4.3で追加されました |
<PHP FTPリファレンス