写入文本文件的文件权限是什么?

Which file permission to write to text files?

我的 PHP 脚本写入 text.txt 文件,例如

 $filename = "pref.enc";  // TEXT FILE
    $file_content = file($filename); 
    $x = count($file_content); 
    $fp = fopen($filename, "w+");  
$file_content[0] = "$my_station" . "\n";
    $y = 0; 
    while($y < $x) 
    { 
    fwrite($fp, $file_content[$y]); 
    $y++; 
    } 
    fclose($fp); 

对于文本文件 AND 文件夹(文件夹保存文本文件),建议使用哪个 CHMOD 权限?

755 还是 777?

  • 目录为 0755
  • 0644 文件

chmod

这是假设您希望每个人都阅读它。