Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我正在处理一些遗留/维护代码,并且有一个使用 FTP 的文件上传,特别是 ftp_login() 和 ftp_put()。
无论如何,每当我上传文件时,它的权限都非常低 - 只有上传的用户才有写权限。我希望所有上传的文件都启用所有权限。
我该怎么办?反正我看不出来。
您可以使用ftp_chmodPHP 更改 FTP 服务器上文件的权限。
ftp_chmod
ftp_chmod($conn, 0777, $file);
如果成功,上述行将授予所有人所有权限$file。
$file