欢迎访问服务器技术网-www.fuwuqijishu.com

PHP ftp_chmod() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 72次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP ftp_chmod() 函数


完整的 PHP FTP 参考手册


定义和用法

ftp_chmod() 函数设置 FTP 服务器上指定文件的权限。

如果成功,该函数返回新的权限。如果失败,则返回 FALSE 和一个警告。

语法

ftp_chmod(ftp_connection,mode,file)

参数 描述
ftp_connection 必需。规定要使用的 FTP 连接。
mode 必需。规定新的权限。

mode 参数由 4 个数字组成:

  • 第一个数字通常是 0
  • 第二个数字规定所有者的权限
  • 第三个数字规定所有者所属的用户组的权限
  • 第四个数字规定其他所有人的权限

可能的值(如需设置多个权限,请对下面的数字进行总计):

  • 1 = 执行权限
  • 2 = 写权限
  • 4 = 读权限
file 必需。规定要修改权限的文件的名称。


实例

<?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);
?>


完整的 PHP FTP 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2208.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900