(PHP 5, PHP 7)
ftp_chmod — ���� FTP �������ϵ��ļ�Ȩ��
$ftp_stream
, int $mode
, string $filename
) : int
���������ϵ��ļ�Ȩ������Ϊ
mode
ָ����ֵ��
ftp_stream
FTP ���ӱ�ʾ����
mode
Ҫ���õ�Ȩ��ֵ�� �˽��� ֵ��
filename
Զ���ļ����ơ�
�����ɹ������ļ��µ�Ȩ�ޣ�����ʧ�ܷ��� FALSE
��
Example #1 ftp_chmod() ��������
<?php
$file = 'public_html/index.php';
// ������������
$conn_id = ftp_connect($ftp_server);
// ʹ���û����������¼
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// �������� $file ��Ȩ��Ϊ 644
if (ftp_chmod($conn_id, 0644, $file) !== false) {
echo "$file chmoded successfully to 644\n";
} else {
echo "could not chmod $file\n";
}
// �ر�����
ftp_close($conn_id);
?>