ftp_cdup can only up to the parent and if you want test a directory that is not a child then you can't with ftp_cdup ;)
(PHP 4, PHP 5, PHP 7, PHP 8)
ftp_cdup — Muda para o diretório acima
Versão | Descrição |
---|---|
8.1.0 |
O parâmetro ftp agora espera uma instância de FTP\Connection;
anteriormente, um resource era esperado.
|
Exemplo #1 Exemplo ftp_cdup()
<?php
// define uma conexão básica
$ftp = ftp_connect($ftp_server);
// login com nome de usuário e senha
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
// muda o diretório atual para html
ftp_chdir($ftp, 'html');
echo ftp_pwd($ftp); // /html
// volta ao diretório acima
if (ftp_cdup($ftp)) {
echo "cdup bem sucedido\n";
} else {
echo "cdup não foi bem sucedido\n";
}
echo ftp_pwd($ftp); // /
ftp_close($ftp);
?>
ftp_cdup can only up to the parent and if you want test a directory that is not a child then you can't with ftp_cdup ;)