# 监测文件 **Repository Path**: xiaophp/check_files ## Basic Information - **Project Name**: 监测文件 - **Description**: 检测服务器中php文件是否有新增和改动 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-01-11 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 监测文件 #### 介绍 检测服务器中php文件是否有新增和改动 #### 软件架构 软件架构说明 ``` CREATE TABLE `x_php_files` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `filesize` int(11) DEFAULT '0', `filectime` int(11) DEFAULT '0' COMMENT '创建时间', `filemtime` int(11) DEFAULT '0' COMMENT '最后修改时间', `addtime` int(11) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=159 DEFAULT CHARSET=utf8; ```