1 Star 0 Fork 1

larkdoc/xl_tags

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.php 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
skiy 提交于 2020-07-28 00:01 . init code
<?php
/**
* 标签云
* 插件发布地址:
* 作者: Skiychan <[email protected]>
*/
!defined('DEBUG') AND exit('Forbidden');
$tablepre = $db->tablepre;
$charset = $db->conf['master']['charset'];
$engine = $db->conf['master']['engine'];
$sql = "CREATE TABLE IF NOT EXISTS `{$tablepre}xl_tags` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序号',
`tid` int(11) NOT NULL COMMENT '主题ID',
`name` varchar(64) NOT NULL COMMENT '标签名',
PRIMARY KEY (`id`)
) ENGINE={$engine} DEFAULT CHARSET={$charset} COMMENT='标签云'";
db_exec($sql);
$sql = "ALTER TABLE `{$tablepre}xl_tags` ADD UNIQUE( `tid`, `name`)";
db_exec($sql);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lackdoc/xl_tags.git
[email protected]:lackdoc/xl_tags.git
lackdoc
xl_tags
xl_tags
master

搜索帮助