PHP遍历并打印指定目录下所有文件实例

该日志类利用单例模式,节省资源。自行判断文件大小,超出指定大小则按序自行创建文件。

对于现在的应用程序来说,日志的重要性是不言而喻的。很难想象没有任何日志记录功能的应用程序运行在生产环境中。日志所能提供的功能是多种多样的,包括记录程序运行时产生的错误信息、状态信息、调试信息和执行时间信息等。在生产环境中,日志是查找问题来源的重要依据。应用程序运行时的产生的各种信息,都应该通过日志类库来进行记录。

  1. /**
  2. * 日志处理类
  3. *
  4. * @since alpha 0.0.1
  5. * @date 2014.03.04
  6. * @author genialx
  7. *
  8. */
  9. class Log{
  10. //单例模式
  11. private static $instance = NULL;
  12. //文件句柄
  13. private static $handle = NULL;
  14. //日志开关
  15. private $log_switch = NULL;
  16. //日志相对目录
  17. private $log_file_path = NULL;
  18. //日志文件最大长度,超出长度重新建立文件
  19. private $log_max_len = NULL;
  20. //日志文件前缀,入 log_0
  21. private $log_file_pre = 'log_';
  22. /**
  23. * 构造函数
  24. *
  25. * @since alpha 0.0.1
  26. * @date 2014.02.04
  27. * @author genialx
  28. */
  29. protected function __construct(){//注意:以下是配置文件中的常量,请读者自行更改
  30. $this->log_file_path = LOG_FILE_PATH;
  31. $this->log_switch = LOG_SWITCH;
  32. $this->log_max_len = LOG_MAX_LEN;
  33. }
  34. /**
  35. * 单利模式
  36. *
  37. * @since alpha 0.0.1
  38. * @date 2014.02.04
  39. * @author genialx
  40. */
  41. public static function get_instance(){
  42. if(!self::$instance instanceof self){
  43. self::$instance = new self;
  44. }
  45. return self::$instance;
  46. }
  47. /**
  48. *
  49. * 日志记录
  50. *
  51. * @param int $type 0 -> 记录(THING LOG) / 1 -> 错误(ERROR LOG)
  52. * @param string $desc
  53. * @param string $time
  54. *
  55. * @since alpha 0.0.1
  56. * @date 2014.02.04
  57. * @author genialx
  58. *
  59. */
  60. public function log($type,$desc,$time){
  61. if($this->log_switch){
  62. if(self::$handle == NULL){
  63. $filename = $this->log_file_pre . $this->get_max_log_file_suf();
  64. self::$handle = fopen($this->log_file_path . $filename, 'a');
  65. }
  66. switch($type){
  67. case 0:
  68. fwrite(self::$handle, 'THING LOG:' . ' ' . $desc . ' ' . $time . chr(13));
  69. break;
  70. case 1:
  71. fwrite(self::$handle, 'ERROR LOG:' . ' ' . $desc . ' ' . $time . chr(13));
  72. break;
  73. default:
  74. fwrite(self::$handle, 'THING LOG:' . ' ' . $desc . ' ' . $time . chr(13));
  75. break;
  76. }
  77. }
  78. }
  79. /**
  80. * 获取当前日志的最新文档的后缀
  81. *
  82. * @since alpha 0.0.1
  83. * @date 2014.02.04
  84. * @author genialx
  85. */
  86. private function get_max_log_file_suf(){
  87. $log_file_suf = null;
  88. if(is_dir($this->log_file_path)){
  89. if($dh = opendir($this->log_file_path)){
  90. while(($file = readdir($dh)) != FALSE){
  91. if($file != '.' && $file != '..'){
  92. if(filetype( $this->log_file_path . $file) == 'file'){
  93. $rs = split('_', $file);
  94. if($log_file_suf < $rs[1]){
  95. $log_file_suf = $rs[1];
  96. }
  97. }
  98. }
  99. }
  100. if($log_file_suf == NULL){
  101. $log_file_suf = 0;
  102. }
  103. //截断文件
  104. if( file_exists($this->log_file_path . $this->log_file_pre . $log_file_suf) && filesize($this->log_file_path . $this->log_file_pre . $log_file_suf) >= $this->log_max_len){
  105. $log_file_suf = intval($log_file_suf) + 1;
  106. }
  107. return $log_file_suf;
  108. }
  109. }
  110. return 0;
  111. }
  112. /**
  113. * 关闭文件句柄
  114. *
  115. * @since alpha 0.0.1
  116. * @date 2014.02.04
  117. * @author genialx
  118. */
  119. public function close(){
  120. fclose(self::$handle);
  121. }
  122. }

功能说明:

该日志类利用单例模式,节省资源。自行判断文件大小,超出指定大小则按序自行创建文件。如:文件log_0大于指定大小,则重新创建log_1文件(注意:创建文件是安装文件名后缀的数字的,请勿随意更改日志文件名)。

有待优化:没有指定文件的最大个数,所以定期要手动删除过多的日志文件。

调用示例:

  1. //LOG
  2. $L = Log::get_instance();
  3. //第一个参数 int 0代表事件记录(THING LOG:),1代表错误记录(ERROR LOG:)
  4. //第二个参数 string 描述文字
  5. //第三个参数 string 时间
  6. $L->log(1,'日志描述', date('Y-n-j H:m:s'));
  7. $L->close();