array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.ftp-cdup.php', 1 => 'ftp_cdup', 2 => 'Changes to the parent directory', ), 'up' => array ( 0 => 'ref.ftp.php', 1 => 'Функції FTP', ), 'prev' => array ( 0 => 'function.ftp-append.php', 1 => 'ftp_append', ), 'next' => array ( 0 => 'function.ftp-chdir.php', 1 => 'ftp_chdir', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ftp/functions/ftp-cdup.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

ftp_cdup

(PHP 4, PHP 5, PHP 7, PHP 8)

ftp_cdupChanges to the parent directory

Опис

ftp_cdup(FTP\Connection $ftp): bool

Changes to the parent directory.

Параметри

ftp

Примірник FTP\Connection.

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Журнал змін

Версія Опис
8.1.0 Тепер параметр ftp має бути примірником FTP\Connection. Раніше очікувався resource.

Приклади

Приклад #1 ftp_cdup() example

<?php
// set up basic connection
$ftp = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);

// change the current directory to html
ftp_chdir($ftp, 'html');

echo
ftp_pwd($ftp); // /html

// return to the parent directory
if (ftp_cdup($ftp)) {
echo
"cdup successful\n";
} else {
echo
"cdup not successful\n";
}

echo
ftp_pwd($ftp); // /

ftp_close($ftp);
?>

Прогляньте також