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 を使用して、Web サイトの php ファイルを変更することもできません。