1 Star 0 Fork 15

Xiao_xiao/JSON API For Discuz

forked from ailab/JSON API For Discuz 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.php 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/*
* 应用中心主页:http://addon.discuz.com/?@ailab
* 人工智能实验室:Discuz!应用中心十大优秀开发者!
* 插件定制 联系QQ594941227
* From www.ailab.cn
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) {
exit('Access Denied');
}
$sql = <<<EOF
CREATE TABLE IF NOT EXISTS `pre_jsonapi_applist` (
`appid` int(11) unsigned NOT NULL AUTO_INCREMENT,
`appname` varchar(255) DEFAULT '',
`appkey` varchar(255) DEFAULT '',
`apilist` varchar(255) DEFAULT '',
PRIMARY KEY (`appid`)
) ENGINE=MyISAM;
CREATE TABLE IF NOT EXISTS `pre_jsonapi_apilogs` (
`logid` int(11) unsigned NOT NULL AUTO_INCREMENT,
`appid` int(11) unsigned NOT NULL DEFAULT '0',
`api` varchar(255) DEFAULT '',
`status` int(11) NOT NULL DEFAULT '0',
`dateline` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`logid`)
) ENGINE=MyISAM;
EOF;
runquery($sql);
$finish = TRUE;
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/watersteam/jsonapi.git
[email protected]:watersteam/jsonapi.git
watersteam
jsonapi
JSON API For Discuz
master

搜索帮助