使用 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);
?>