3

我有一个 PHP 上传脚本,并且正在尝试制作它,以便我网站的所有用户都可以编辑和读取上传的文件(即将上传文件的文件权限设置为chmod 777)。文件上传到的目录具有正确的权限。但是,上传的文件没有。因为新文件会不断上传,所以我需要在上传过程中内置某种代码,在上传时设置/更改上传文件的文件权限

有什么想法吗?

4

1 回答 1

3

只需chmod()在上传功能后使用..

<?php

/* 
 * All your upload code here; then pass the filename
 * and the base permissions to the chmod() below
 */

chmod($uploadedFile, 0777);

?>
于 2012-06-18T19:29:47.307 回答