php を使用して、public_html フォルダー内にあるファイルから public_html フォルダー外のフォルダーにあるファイルを編集するにはどうすればよいですか? public_html フォルダー外のファイルのファイル名に include 関数を使用しようとしましたが、外部ファイルを更新するだけでなく、現在のファイルの内容を表示する (fputs を使用して) 外部ファイルを実行します。
<?php
include "hits.txt";
$filename = "hits.txt";
$count = file($filename);
$count[0]++;
$file = fopen ($filename, "w") or die ("Cannot find $filename");
fputs($file, "$count[0]");
fclose($file);
?>