PHP ftp_chmod() 函數(shù)
PHP ftp_chmod() 函數(shù)

定義和用法
ftp_chmod() 函數(shù)設(shè)置 FTP 服務(wù)器上指定文件的權(quán)限。
如果成功,該函數(shù)返回新的權(quán)限。如果失敗,則返回 FALSE 和一個警告。
語法
ftp_chmod(ftp_connection,mode,file)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
mode | 必需。規(guī)定新的權(quán)限。 mode 參數(shù)由 4 個數(shù)字組成:
可能的值(如需設(shè)置多個權(quán)限,請對下面的數(shù)字進(jìn)行總計(jì)):
|
file | 必需。規(guī)定要修改權(quán)限的文件的名稱。 |
實(shí)例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"user","pass");
// Read and write for owner, nothing for everybody else
ftp_chmod($conn,"0600","test.txt");
// Read and write for owner, read for everybody else
ftp_chmod($conn,"0644","test.txt");
// Everything for owner, read and execute for everybody else
ftp_chmod($conn,"0755","test.txt");
// Everything for owner, read for owner's group
ftp_chmod($conn,"0740","test.txt");
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"user","pass");
// Read and write for owner, nothing for everybody else
ftp_chmod($conn,"0600","test.txt");
// Read and write for owner, read for everybody else
ftp_chmod($conn,"0644","test.txt");
// Everything for owner, read and execute for everybody else
ftp_chmod($conn,"0755","test.txt");
// Everything for owner, read for owner's group
ftp_chmod($conn,"0740","test.txt");
ftp_close($conn);
?>

相關(guān)文章
- PHP 數(shù)組
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP $_POST 變量
- PHP Session
- PHP Secure E-mails
- PHP array_intersect_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)