Home  >  Article  >  Backend Development  >  How many files are suitable for writing logs in PHP?

How many files are suitable for writing logs in PHP?

angryTom
angryTomOriginal
2019-11-04 10:36:112404browse

How many files are suitable for writing logs in PHP?

How many files does php write logs in?

1. From the perspective of file size

No matter how big the log file is, it can be read and written. The key is to read the file line by line, rather than reading the entire file into memory.

Therefore, judging from the log file size, there is no need to divide the files.

Note: There will be no problem if you use the fgets method to open a file pointer and then loop to read the file line by line.

2. From a time perspective

From a time perspective, log files should be divided into files every week or every month.

Because a single log file is too large to manage and takes up server space, the advantage of writing logs based on date is that unnecessary files can be deleted and the log files The space occupied is maintained at a stable level, and the logs are easy to view and analyze.

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of How many files are suitable for writing logs in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn