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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4376 | PHP | 8년 전 | 2096 | ||
| 4375 | PHP | 8년 전 | 1831 | ||
| 4374 | PHP | 8년 전 | 1935 | ||
| 4373 | PHP |
|
8년 전 | 3633 | |
| 4372 | PHP | 8년 전 | 4227 | ||
| 4371 | PHP | 8년 전 | 2901 | ||
| 4370 | PHP | 8년 전 | 2286 | ||
| 4369 | PHP | 8년 전 | 4173 | ||
| 4368 | PHP | 8년 전 | 2315 | ||
| 4367 | PHP | 8년 전 | 2103 | ||
| 4366 | PHP |
|
8년 전 | 4505 | |
| 4365 | PHP |
|
8년 전 | 2776 | |
| 4364 | PHP | 8년 전 | 2092 | ||
| 4363 | PHP | 8년 전 | 2560 | ||
| 4362 | PHP | 8년 전 | 2226 | ||
| 4361 | PHP |
|
8년 전 | 2648 | |
| 4360 | PHP | 8년 전 | 2151 | ||
| 4359 | PHP | 8년 전 | 2533 | ||
| 4358 | PHP | 8년 전 | 2229 | ||
| 4357 | PHP | 8년 전 | 2346 | ||
| 4356 | PHP | 8년 전 | 2191 | ||
| 4355 | PHP | 8년 전 | 2525 | ||
| 4354 | PHP |
|
8년 전 | 2654 | |
| 4353 | PHP | 8년 전 | 3256 | ||
| 4352 | PHP | 8년 전 | 2354 | ||
| 4351 | PHP | 8년 전 | 2398 | ||
| 4350 | PHP | 8년 전 | 2361 | ||
| 4349 | PHP |
|
8년 전 | 2750 | |
| 4348 | PHP | 8년 전 | 2324 | ||
| 4347 | PHP | 8년 전 | 2018 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기