我想检查一个文本文件的内容是否与另一个相同,如果不是,将一个写入另一个。我的代码如下:
<?php $file = "http://example.com/Song.txt";
$f = fopen($file, "r+");
$line = fgets($f, 1000);
$file1 = "http://example.com/Song1.txt";
$f1 = fopen($file1, "r+");
$line1 = fgets($f1, 1000);
if (!($line == $line1)) {
fwrite($f1,$line);
$line1 = $line;
};
print htmlentities($line1);
?>
正在打印该行,但内容未写入文件中。
关于可能是什么问题的任何建议?
顺便说一句:我使用 000webhost。我认为这是网络托管服务,但我已经检查过,应该没有问题。我还在这里检查了fwrite
函数:http: //php.net/manual/es/function.fwrite.php。请,任何帮助将非常感激。