我希望我的 php 文件将一些文本写入我创建的文本文件,但没有写入任何内容。
这是代码:
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
if (isset($_POST['comment']))
{
$comment = $_POST['comment'];
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $comment;
fwrite($fh, $stringData);
fclose($fh);
}
else
{
$comment = 'no comment';
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $comment;
fwrite($fh, $stringData);
fclose($fh);
}
?>