首页  编辑  

简单的PHP文件下载计数器

Tags: /PHP/   Date Created:
我想简单对文件下载计数,该怎么办?

简单方法:
首先创建: count.php,内容如下:
<?php
$file=$_GET['name'].'.txt';
$hit_count = file_get_contents($file) ;
$hit_count=$hit_count + 1file_put_contents($file, $hit_count); 
header('Location: '.$_GET['file']); // redirect to the real file to be downloaded
?>
然后,在其他页面上可以调用,例如,在HTML中调用:
<li><a href="./count.php?name=count_file_name&file=file_for_download.ext">安装Android版</a><span class="ver">&nbsp;2016-5-31, v1.1</span></li>
别忘记,在相同目录下,建立与name参数同名的.txt文件!