哪个文件权限写入文本文件?

时间:2017-04-01 08:53:35

标签: php ftp chmod

我的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); 

建议哪些CHMOD权限用于文本文件 AND文件夹(该文件夹包含文本文件)?

755或777?

1 个答案:

答案 0 :(得分:1)

  • 0755 for directories
  • 0644 for files

请参阅chmod

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