3 Star 24 Fork 8

如沐春 / 简单的PHP爬虫系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
caiji.sql 2.50 KB
一键复制 编辑 原始数据 按行查看 历史
如沐春 提交于 2020-04-20 17:42 . 上传文件
--
-- Table structure for table `dbconfig`
--
DROP TABLE IF EXISTS `dbconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dbconfig` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`host` varchar(50) DEFAULT NULL,
`port` int(11) NOT NULL DEFAULT '3306',
`dbname` varchar(50) DEFAULT NULL,
`user` varchar(50) DEFAULT NULL,
`pass` varchar(255) DEFAULT NULL,
`addtime` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='数据库表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dbconfig`
--
LOCK TABLES `dbconfig` WRITE;
/*!40000 ALTER TABLE `dbconfig` DISABLE KEYS */;
INSERT INTO `dbconfig` VALUES (10,'host',3306,'qdm690723280_db','root','root',1586861356);
/*!40000 ALTER TABLE `dbconfig` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fields`
--
DROP TABLE IF EXISTS `fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`field` varchar(50) DEFAULT NULL,
`param` varchar(500) DEFAULT NULL,
`pid` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='字段表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fields`
--
LOCK TABLES `fields` WRITE;
/*!40000 ALTER TABLE `fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `project`
--
DROP TABLE IF EXISTS `project`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`method` varchar(20) NOT NULL DEFAULT 'GET',
`description` varchar(500) DEFAULT NULL,
`target` varchar(50) DEFAULT NULL,
`addtime` int(11) NOT NULL DEFAULT '0',
`dbid` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='项目表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `project`
--
LOCK TABLES `project` WRITE;
/*!40000 ALTER TABLE `project` DISABLE KEYS */;
/*!40000 ALTER TABLE `project` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
PHP
1
https://gitee.com/Cherry_toto/a_simple_php_crawler_system.git
git@gitee.com:Cherry_toto/a_simple_php_crawler_system.git
Cherry_toto
a_simple_php_crawler_system
简单的PHP爬虫系统
master

搜索帮助