ftp_site(3) php man page | unix.com

Man Page: ftp_site

Operating Environment: php

Section: 3

FTP_SITE(3)								 1							       FTP_SITE(3)

ftp_site - Sends a SITE command to the server

SYNOPSIS
bool ftp_site (resource $ftp_stream, string $command)
DESCRIPTION
ftp_site(3) sends the given SITE command to the FTP server. SITE commands are not standardized, and vary from server to server. They are useful for handling such things as file permissions and group membership.
PARAMETERS
o $ftp_stream - The link identifier of the FTP connection. o $command - The SITE command. Note that this parameter isn't escaped so there may be some issues with filenames containing spaces and other characters.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1 Sending a SITE command to an ftp server <?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. "; } else { die('Command failed.'); } ?>
SEE ALSO
ftp_raw(3). PHP Documentation Group FTP_SITE(3)
Related Man Pages
ftpgroups(4) - hpux
ftp_nlist(3) - php
ftp_fget(3) - php
ftp_fput(3) - php
sqlsrv_server_info(3) - php
Similar Topics in the Unix Linux Community
odd ftp problem
Trailing spaces chopped off - MF to Unix FTP.
ftping a file based in the size
ftp var for filename with spaces
Connect to server-1 from server-2 and get a file from server-1