ftp_cdup - 상위 디렉토리 변경
ftp_cdup - 상위 디렉토리 변경
설명 ¶
bool ftp_cdup ( resource $ftp_stream )
상위 디렉토리로 변경됩니다.
매개 변수 ¶
ftp_stream
FTP 연결의 링크 식별자입니다.
값을 돌려줍니다 ¶
반환 값 TRUE성공 또는 FALSE실패.
예 ¶
예 # 1 ftp_cdup () 예
<?php
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// change the current directory to html
ftp_chdir($conn_id, 'html');
echo ftp_pwd($conn_id); // /html
// return to the parent directory
if (ftp_cdup($conn_id)) {
echo "cdup successful\n";
} else {
echo "cdup not successful\n";
}
echo ftp_pwd($conn_id); // /
ftp_close($conn_id);
?>
설명 ¶
bool ftp_cdup ( resource $ftp_stream )
상위 디렉토리로 변경됩니다.
매개 변수 ¶
ftp_stream
FTP 연결의 링크 식별자입니다.
값을 돌려줍니다 ¶
반환 값 TRUE성공 또는 FALSE실패.
예 ¶
예 # 1 ftp_cdup () 예
<?php
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// change the current directory to html
ftp_chdir($conn_id, 'html');
echo ftp_pwd($conn_id); // /html
// return to the parent directory
if (ftp_cdup($conn_id)) {
echo "cdup successful\n";
} else {
echo "cdup not successful\n";
}
echo ftp_pwd($conn_id); // /
ftp_close($conn_id);
?>
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4436 | PHP | 8년 전 | 2845 | ||
| 4435 | PHP | 8년 전 | 2996 | ||
| 4434 | PHP | 8년 전 | 2481 | ||
| 4433 | PHP | 8년 전 | 2554 | ||
| 4432 | PHP | 8년 전 | 2492 | ||
| 4431 | PHP | 8년 전 | 2470 | ||
| 4430 | PHP | 8년 전 | 2782 | ||
| 4429 | PHP | 8년 전 | 2005 | ||
| 4428 | PHP | 8년 전 | 2122 | ||
| 4427 | PHP | 8년 전 | 1913 | ||
| 4426 | PHP | 8년 전 | 2323 | ||
| 4425 | PHP | 8년 전 | 1944 | ||
| 4424 | PHP | 8년 전 | 2326 | ||
| 4423 | PHP | 8년 전 | 2714 | ||
| 4422 | PHP | 8년 전 | 2442 | ||
| 4421 | PHP | 8년 전 | 2395 | ||
| 4420 | PHP | 8년 전 | 2737 | ||
| 4419 | PHP | 8년 전 | 1883 | ||
| 4418 | PHP | 8년 전 | 2074 | ||
| 4417 | PHP | 8년 전 | 2297 | ||
| 4416 | PHP | 8년 전 | 2414 | ||
| 4415 | PHP | 8년 전 | 2383 | ||
| 4414 | PHP | 8년 전 | 2247 | ||
| 4413 | PHP | 8년 전 | 2207 | ||
| 4412 | PHP | 8년 전 | 2088 | ||
| 4411 | PHP | 8년 전 | 2594 | ||
| 4410 | PHP | 8년 전 | 2427 | ||
| 4409 | PHP | 8년 전 | 2709 | ||
| 4408 | JavaScript | 8년 전 | 2684 | ||
| 4407 | PHP | 8년 전 | 3376 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기