Initial commit

This commit is contained in:
易焱
2021-03-13 18:42:01 +08:00
commit d9a3c376d5
3243 changed files with 627198 additions and 0 deletions
@@ -0,0 +1,10 @@
<?php
$this->E_D("DROP TABLE IF EXISTS `db_vars`;");
$this->E_C("CREATE TABLE `db_vars` (
`name` varchar(255) DEFAULT NULL,
`value` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='常用变量表'");
$this->E_D("replace into `db_vars` values('weixin_access_token','6_kgRDgRjNyuDaWbOhk1rLuY7LWPFo7-MIIp0LR4goT9-phEOIvnomd42f2rx1rF5kCAS5LsZNJULX8o3-MgqWWteq6EM_M1ITY7be8AHksgHCz3VngxQv3Gw5X_cRGIfkU4ITAVDhXBuwpCW9IBUbAIAEXQ');");
$this->E_D("replace into `db_vars` values('weixin_access_token_expires_in','1517035425');");
?>