无法使用PHP附加文本文件

时间:2018-08-14 18:33:02

标签: php

我正在做一个php教程,但是一个方面不起作用,我不知道为什么。

我可以确认我对该Apache中的该文件夹具有写访问权限。 文本文件的内容:
哈里·金特(Harry Ginter),8237 Barkwood Dr.,肯塔基州列克星敦,40501
Felicia Ginter,肯塔基州列克星敦市8238 Barkwood Dr.,邮政编码40501
Trinity Ginter,8238 Barkwood Dr.,肯塔基州列克星敦,40501
Eva Coutermarsh,8239 Barkwood Dr.,肯塔基州列克星敦,40501

这是应该工作的超级简单脚本,但是当我回显文件时,内容不会改变:

$newCustomer = "\nMitzy Ginter, 8240 Barkwood Dr., Lexington, KY, 40501";
//Open a file to append to.  First create a handle:
$fileAppend = fopen("customers2.txt", "a");
fwrite($fileAppend, $newCustomer);
fclose($fileAppend);  //close file
echo "<br>Current file contents: " . file_get_contents("customers2.txt");

任何人都可以看到我在做什么错吗?

1 个答案:

答案 0 :(得分:-1)

尝试一下:

$txt = "truthisgod";
 $fileAppend= file_put_contents('customers2.txt', $newCustomer.PHP_EOL , FILE_APPEND | LOCK_EX);