检查此代码:
<?php
$url = 'http://www.example.com/downloads/count.txt';
$hit_count = @file_get_contents($url);
$hit_count++;
@file_put_contents($url, $hit_count);
header('Location: wmwc.zip');
?>
@file_get_contents
工作正常,对下载文件的标题位置更改也有效,但是 hit_count 增加或@file_put_contents
不起作用,因为文件的数字不增加 1。我已将文件权限设置为 777,但是当我尝试将目录权限设置为 777 我也收到 500 内部服务器错误,说“服务器遇到了意外情况,导致它无法满足请求。”