我无法使用 php 更新任何 txt 文件。当我编写如下简单代码时:
<?php
// create file pointer
$fp = fopen("C:/Users/jj/bob.txt", 'w') or die('Could not open file, or fike does not exist and failed to create.');
$mytext = '<b>hi. This is my test</b>';
// write text to file
fwrite($fp, $mytext) or die('Could not write to file.');
$content = file("C:/Users/jj/bob.txt");
// close file
fclose($fp);
?>
这两个文件确实存在于文件夹中。我只是在 bob.txt 上看不到任何更新。
这是Windows中的权限错误吗?它在我家里的笔记本电脑上运行良好。我也无法使用 filezilla 更改我网站上的 php 文件。