我正在使用简单的fopen("w")
设置fwrite
在我的服务器上编写一个新文件。最近,这一直在给这些文件任意分配0640权限,这意味着我无法从浏览器中查看它们。但这并不是每次都发生。谁能告诉我为什么?我在这里缺少什么?这是我的代码:
if ($file=fopen("$filesDir/$yr/$mo/{$tempFile[0]}.xml","wb")) {
if(fwrite($file,$output,strlen($output))) {
$success="YES";
$message="File successfully built.";
} else {
$message="Could not write XML file.";
}
} else {
$message="Could not open file.";
}