例
出力電流のディレクトリ名は、その後、親ディレクトリに変更します。
<?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);
// change the
current directory to php
ftp_chdir($ftp_conn, "php");
// change to the parent directory
if (ftp_cdup($ftp_conn))
{
echo "Successfully changed to parent directory.";
}
else
{
echo "cdup failed.";
}
// output current
directory name
echo ftp_pwd($ftp_conn);
// close connection
ftp_close($ftp_conn);
?>
定義と使用法
ftp_cdup()関数は、FTPサーバー上の親ディレクトリに変更します。
構文
ftp_cdup( ftp_connection );
パラメーター | 説明 |
---|---|
ftp_connection | 必須。 FTP接続を使用するように指定します |
技術的な詳細
戻り値: | 成功した場合にTRUEを、失敗した場合にFALSEを返します。 |
---|---|
PHPバージョン: | 4+ |
<PHP FTPリファレンス