Örnek
Çıkış akımı dizin adı, daha sonra ana dizine geçmek:
<?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);
?>
Tanımı ve Kullanımı
ftp_cdup() işlevi FTP sunucusu ana dizine değiştirir.
Sözdizimi
ftp_cdup( ftp_connection );
Parametre | Açıklama |
---|---|
ftp_connection | Gereklidir. kullanmak için FTP bağlantısı belirtir |
Teknik detaylar
Geri dönüş değeri: | Başarı durumunda, başarısızlık durumunda döner |
---|---|
PHP Sürümü: | 4+ |
<PHP FTP Referans