gpt4 book ai didi

php - 文件权限和 CHMOD : How to set 777 in PHP upon file creation?

转载 作者:可可西里 更新时间:2023-10-31 22:18:46 26 4
gpt4 key购买 nike

保存文件时有关文件权限的问题,当文件不存在时,最初创建为新文件。

现在,一切顺利,保存的文件似乎具有 644 模式。

为了使文件保存为 777 模式,我必须在此处更改什么?

感谢一千人提供的任何提示、线索或答案。我认为与此处相关的代码包括在内:

/* write to file */

self::writeFileContent($path, $value);

/* Write content to file
* @param string $file Save content to which file
* @param string $content String that needs to be written to the file
* @return bool
*/

private function writeFileContent($file, $content){
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
return true;
}

最佳答案

PHP 有一个名为 bool chmod(string $filename, int $mode )

的内置函数

http://php.net/function.chmod

private function writeFileContent($file, $content){
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
chmod($file, 0777); //changed to add the zero
return true;
}

关于php - 文件权限和 CHMOD : How to set 777 in PHP upon file creation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6433643/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com