ftp_pwd - 현재 디렉토리 이름을 반환합니다.

· 2017-02-21 (화) 23:14:53 · 2626

ftp_pwd - 현재 디렉토리 이름을 반환합니다.

 

설명 ¶

 

string ftp_pwd ( resource $ftp_stream )

매개 변수 ¶

 

ftp_stream

FTP 연결의 링크 식별자입니다.

 

반환 값 ¶

 

현재의 디렉토리 명을 돌려줍니다 FALSE.

 

예 ¶

 

Example # 1 ftp_pwd () 예제

 

<?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 directory to public_html

ftp_chdir($conn_id, 'public_html');

 

// print current directory

echo ftp_pwd($conn_id); // /public_html

 

// close the connection

ftp_close($conn_id);

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-05-05 조회 2,659
PHP 17-05-04 조회 2,718
PHP 17-05-04 조회 3,098
PHP 17-05-04 조회 2,587
node.js 17-04-30 조회 2,474
jQuery 17-04-14 조회 2,088
jQuery 17-04-14 조회 2,188
jQuery 17-04-14 조회 2,517
PHP 17-04-14 조회 2,590
PHP 17-04-14 조회 2,875
PHP 17-04-14 조회 2,809
jQuery 17-04-13 조회 1,873
jQuery 17-04-13 조회 1,844
jQuery 17-04-13 조회 2,375
PHP 17-04-11 조회 2,717
PHP 17-04-11 조회 2,237
PHP 17-04-11 조회 2,955
OS 17-04-11 조회 3,245
PHP 17-04-10 조회 2,377
PHP 17-04-10 조회 1,999
PHP 17-04-10 조회 2,424
PHP 17-04-05 조회 2,451
PHP 17-04-05 조회 2,858
PHP 17-04-05 조회 2,696
jQuery 17-04-05 조회 2,296
jQuery 17-04-05 조회 1,834
jQuery 17-04-05 조회 2,421
jQuery 17-04-04 조회 2,337
jQuery 17-04-04 조회 2,107
PHP 17-04-04 조회 3,067