Write file on php

前端 未结 3 1202
生来不讨喜
生来不讨喜 2021-01-25 18:20

I want to keep ips from visitors and place them on a file.
I tried fwrite() function but I think it is rewrite on the previus ip on file.

Example.

ip.txt is

3条回答
  •  一个人的身影
    2021-01-25 19:07

     
    

    Look at the manual

    Check what the 2nd parameter means.

    Youve chosen w mode which is an overrwrite mode. Try a mode instead (append)

提交回复
热议问题