(PHP 4, PHP 5, PHP 7)
ftp_site — ����������� SITE ����
$ftp_stream
, string $cmd
) : bool
ftp_site() ������ FTP �����������ɲ��� cmd
ָ�������
SITE �����ǷDZ����ģ���ͬ�ķ�����������ͬ����Ҫ���ڴ����ļ�Ȩ���Լ����Ա�����顣
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.');
}
?>