即使is_writable()
返回 true,我也无法写入文件。当然,该文件存在并且显然是可读的。这是代码:
$file = "data";
echo file_get_contents($file)."<br>";
echo is_writable($file) ? "is writable<br>" : "not writable<br>";
if (file_put_contents($file, "ghijkl", FILE_APPEND) === FALSE) echo "failed<br>";
echo file_get_contents($file)."<br>";
这是输出:
abcdef
is writable
failed
abcdef