ftp_site - 서버에 SITE 명령을 보냅니다.
설명 ¶
bool ftp_site ( resource $ftp_stream , string $command )
ftp_site () 는 주어진 SITE 명령을 FTP 서버로 보냅니다.
SITE 명령은 표준화되지 않았으며 서버마다 다릅니다. 파일 사용 권한 및 그룹 구성원 자격을 처리하는 데 유용합니다.
매개 변수 ¶
ftp_stream
FTP 연결의 링크 식별자입니다.
command
SITE 명령. 이 매개 변수는 이스케이프 처리되지 않으므로 공백 및 다른 문자가 포함 된 파일 이름에 문제가있을 수 있습니다.
반환 값 ¶
반환 값 TRUE성공 또는 FALSE실패.
예 ¶
Example # 1 FTP 서버에 SITE 명령 보내기
<?php
// Connect to FTP server
$conn = ftp_connect('ftp.example.com');
if (!$conn) die('Unable to connect to ftp.example.com');
// Login as "user" with password "pass"
if (!ftp_login($conn, 'user', 'pass')) die('Error logging into ftp.example.com');
// Issue: "SITE CHMOD 0600 /home/user/privatefile" command to ftp server
if (ftp_site($conn, 'CHMOD 0600 /home/user/privatefile')) {
echo "Command executed successfully.\n";
} else {
die('Command failed.');
}
?>
'IT > css' 카테고리의 다른 글
CSS 레이아웃 - position: relative; 속성 (0) | 2017.03.13 |
---|---|
css max-width and margin: auto; (0) | 2017.03.13 |
CSS Links 스타일 링크 (0) | 2017.02.25 |
CSS Links Text Decoration (0) | 2017.02.25 |
CSS Links 배경색 (0) | 2017.02.25 |