最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
phpcms v9增加类似于phpcms 2008中的关键词表
时间:2022-06-25 16:37:20 编辑:袖梨 来源:一聚教程网
在model文件夹中增加一个keyword_ext_model.class.php。keyword_model实际是存在model文件夹中的,不知道为什么没有keyword这张表?
所以还是不要在这个基本上增加,也许将来这个model会用上,
| 代码如下 | 复制代码 |
|
defined('IN_PHPCMS') or exit('No permission resources.'); pc_base::load_sys_class('model', '', 0); class keyword_ext_model extends model { public $table_name = ''; public function __construct() { $this->db_config = pc_base::load_config('database'); $this->db_setting = 'default'; $this->table_name = 'keyword_ext'; parent::__construct(); } } ?> |
|
然后创建一张表
| 代码如下 | 复制代码 |
CREATE TABLE `t_v9_keyword_ext` ( `tagid` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `tag` char(50) NOT NULL, `style` char(5) NOT NULL, `usetimes` smallint(5) unsigned NOT NULL DEFAULT '0', `lastusetime` int(10) unsigned NOT NULL DEFAULT '0', `hits` mediumint(8) unsigned NOT NULL DEFAULT '0', `lasthittime` int(10) unsigned NOT NULL DEFAULT '0', `listorder` tinyint(3) unsigned NOT NULL DEFAULT '0', `modelid` smallint(6) DEFAULT '0', PRIMARY KEY (`tagid`), UNIQUE KEY `tag` (`tag`), KEY `usetimes` (`usetimes`,`listorder`), KEY `hits` (`hits`,`listorder`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; |
|
最后一步在phpcms/modules/content/fields/keyword 中增加一个 input.inc.php
| 代码如下 | 复制代码 |
| function tags($field, $value) { if(!$value) return ''; if(strpos($value, ',')) { $s = ','; } else { $s = ','; } $keywords = isset($s) ? array_unique(array_filter(explode($s, $value))) : array($value); $keyword_db = pc_base::load_model('keyword_ext_model'); foreach($keywords as $tag) { $tag = trim($tag); $keyword_db->delete(array("tag"=>$tag,"modelid"=>$this->modelid)); $c=$this->db->count("keywords like '%".$tag."%'"); $keyword_db->insert(array("modelid"=>$this->modelid,"tag"=>$tag,"usetimes"=>$c,"lastusetime"=>SYS_TIME),false,true); } return implode($s, $keywords); |
|
}这样在文章增加关键词的时候,会自动增加到keyword_ext中一份,调用全站tags的时候直接调上这个表就行了
相关文章
- QQ经典版下载安装最新版-QQ经典版轻量版app官方正式版下载 12-17
- 豆包网页版官方入口-豆包网页版一键直达官网 12-17
- 抖音网页版官方入口-在线畅玩douyin.com 12-17
- 土豪漫画官方下载入口-安卓/iOS一键安装APP 12-17
- QQ经典版最新版本下载安装-QQ经典版app官方正版下载地址 12-17
- 漫蛙官网入口网页直达-漫蛙官网入口官方认证链接 12-17