file download counter without database

前端 未结 4 2136
一生所求
一生所求 2021-02-10 05:03

I am a beginer in programming. i have a pdf file for download in my website. I want to know the no. of downloads. I searched in google.

and i tried something like this.

4条回答
  •  说谎
    说谎 (楼主)
    2021-02-10 05:36

    Well instead of a database you will have to keep a file with count

    in the php file that downloads the pdf:

    $downCount = intval( file_get_contents("/some/path/downloadCount") );
    $downCount++;
    file_put_contents("/some/path/downloadCount",$downCount);
    

提交回复
热议问题