帝国CMS 给TAG添加首字母自动获取首字母
时间:2024年03月07日
/来源:网络
/编辑:佚名
自己获取TAG首字母教程
第一步:在表enewstags增加字段zm(建议用phpmyadmin或直接SQL:
ALTER TABLE `phome_enewstags` ADD `zm` CHAR(2) NOT NULL AFTER `tagname`;)
全选代码复制
——————————
第二步:
找到 /e/admin/tags/AddTags.php
查找:$r=$empire->fetch1("select tagid,tagname,cid from {$dbtbpre}enewstags where tagid='$tagid'");
修改为:$r=$empire->fetch1("select tagid,tagname,zm,cid from {$dbtbpre}enewstags where tagid='$tagid'");
全选代码复制
在69行后添加:
<tr bgcolor="#FFFFFF">
<td width="18%" height="25">TAG首字母:</td>
<td width="82%" height="25"> <input name="zm" type="text" id="zm" value="<?=$r[zm]?>" size="42"> </td>
</tr>
全选代码复制
第三步:
修改文件:/e/admin/tags/ListTags.php
——————————————————————–
require(“../../class/userfun.php”);
查找:$tagname=RepPostVar($add[‘tagname’]);
202行后增加:$tagzm=getfirstchar(RepPostVar($_POST[‘tagname’]));
——————————————————————–
查找://修改TAGS 函数里添加:$zm=RepPostVar($add[‘zm’]);
查找:$sql=$empire->query(“insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values(‘$tagname’,0,0,’$cid’);”);
修改为:$sql=$empire->query(“insert into {$dbtbpre}enewstags(tagname,num,zm,isgood,cid) values(‘$tagname’,0,’$tagzm’,0,’$cid’);”);
—————————————————————————————————————————
查找:$sql=$empire->query(“update {$dbtbpre}enewstags set tagname=’$tagname’,cid=’$cid’ where tagid=’$tagid'”);
修改为:$sql=$empire->query(“update {$dbtbpre}enewstags set tagname=’$tagname’,cid=’$cid’,zm=’$zm’ where tagid=’$tagid'”);
第四步:
打开/e/class/userfun.php
添加函数:
function getfirstchar($s0){
$fchar = ord($s0{0});
if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});
$s1 = iconv("UTF-8","gb2312", $s0);
$s2 = iconv("gb2312","UTF-8", $s1);
if($s2 == $s0){
$s = $s1;
}else{
$s = $s0;
}
$asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
if($asc >= -20319 and $asc <= -20284) return "A";
if($asc >= -20283 and $asc <= -19776) return "B";
if($asc >= -19775 and $asc <= -19219) return "C";
if($asc >= -19218 and $asc <= -18711) return "D";
if($asc >= -18710 and $asc <= -18527) return "E";
if($asc >= -18526 and $asc <= -18240) return "F";
if($asc >= -18239 and $asc <= -17923) return "G";
if($asc >= -17922 and $asc <= -17418) return "I";
if($asc >= -17417 and $asc <= -16475) return "J";
if($asc >= -16474 and $asc <= -16213) return "K";
if($asc >= -16212 and $asc <= -15641) return "L";
if($asc >= -15640 and $asc <= -15166) return "M";
if($asc >= -15165 and $asc <= -14923) return "N";
if($asc >= -14922 and $asc <= -14915) return "O";
if($asc >= -14914 and $asc <= -14631) return "P";
if($asc >= -14630 and $asc <= -14150) return "Q";
if($asc >= -14149 and $asc <= -14091) return "R";
if($asc >= -14090 and $asc <= -13319) return "S";
if($asc >= -13318 and $asc <= -12839) return "T";
if($asc >= -12838 and $asc <= -12557) return "W";
if($asc >= -12556 and $asc <= -11848) return "X";
if($asc >= -11847 and $asc <= -11056) return "Y";
if($asc >= -11055 and $asc <= -10247) return "Z";
if(!trim($s0)) {
return null;
}
$s0=esub($s0,1);
$numstrs='123456789一二三四五六七八九';
$numstr['1']='1';
$numstr['2']='2';
$numstr['3']='3';
$numstr['4']='4';
$numstr['5']='5';
$numstr['6']='6';
$numstr['7']='7';
$numstr['8']='8';
$numstr['9']='9';
$numstr['一']='1';
$numstr['二']='2';
$numstr['三']='3';
$numstr['四']='4';
$numstr['五']='5';
$numstr['六']='6';
$numstr['七']='7';
$numstr['八']='8';
$numstr['九']='9';
if(strstr($numstrs,$s0)) {
return $numstr[$s0];
}
}
全选代码复制
第一步:在表enewstags增加字段zm(建议用phpmyadmin或直接SQL:
ALTER TABLE `phome_enewstags` ADD `zm` CHAR(2) NOT NULL AFTER `tagname`;)
全选代码复制
——————————
第二步:
找到 /e/admin/tags/AddTags.php
查找:$r=$empire->fetch1("select tagid,tagname,cid from {$dbtbpre}enewstags where tagid='$tagid'");
修改为:$r=$empire->fetch1("select tagid,tagname,zm,cid from {$dbtbpre}enewstags where tagid='$tagid'");
全选代码复制
在69行后添加:
<tr bgcolor="#FFFFFF">
<td width="18%" height="25">TAG首字母:</td>
<td width="82%" height="25"> <input name="zm" type="text" id="zm" value="<?=$r[zm]?>" size="42"> </td>
</tr>
全选代码复制
第三步:
修改文件:/e/admin/tags/ListTags.php
——————————————————————–
require(“../../class/userfun.php”);
查找:$tagname=RepPostVar($add[‘tagname’]);
202行后增加:$tagzm=getfirstchar(RepPostVar($_POST[‘tagname’]));
——————————————————————–
查找://修改TAGS 函数里添加:$zm=RepPostVar($add[‘zm’]);
查找:$sql=$empire->query(“insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values(‘$tagname’,0,0,’$cid’);”);
修改为:$sql=$empire->query(“insert into {$dbtbpre}enewstags(tagname,num,zm,isgood,cid) values(‘$tagname’,0,’$tagzm’,0,’$cid’);”);
—————————————————————————————————————————
查找:$sql=$empire->query(“update {$dbtbpre}enewstags set tagname=’$tagname’,cid=’$cid’ where tagid=’$tagid'”);
修改为:$sql=$empire->query(“update {$dbtbpre}enewstags set tagname=’$tagname’,cid=’$cid’,zm=’$zm’ where tagid=’$tagid'”);
第四步:
打开/e/class/userfun.php
添加函数:
function getfirstchar($s0){
$fchar = ord($s0{0});
if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});
$s1 = iconv("UTF-8","gb2312", $s0);
$s2 = iconv("gb2312","UTF-8", $s1);
if($s2 == $s0){
$s = $s1;
}else{
$s = $s0;
}
$asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
if($asc >= -20319 and $asc <= -20284) return "A";
if($asc >= -20283 and $asc <= -19776) return "B";
if($asc >= -19775 and $asc <= -19219) return "C";
if($asc >= -19218 and $asc <= -18711) return "D";
if($asc >= -18710 and $asc <= -18527) return "E";
if($asc >= -18526 and $asc <= -18240) return "F";
if($asc >= -18239 and $asc <= -17923) return "G";
if($asc >= -17922 and $asc <= -17418) return "I";
if($asc >= -17417 and $asc <= -16475) return "J";
if($asc >= -16474 and $asc <= -16213) return "K";
if($asc >= -16212 and $asc <= -15641) return "L";
if($asc >= -15640 and $asc <= -15166) return "M";
if($asc >= -15165 and $asc <= -14923) return "N";
if($asc >= -14922 and $asc <= -14915) return "O";
if($asc >= -14914 and $asc <= -14631) return "P";
if($asc >= -14630 and $asc <= -14150) return "Q";
if($asc >= -14149 and $asc <= -14091) return "R";
if($asc >= -14090 and $asc <= -13319) return "S";
if($asc >= -13318 and $asc <= -12839) return "T";
if($asc >= -12838 and $asc <= -12557) return "W";
if($asc >= -12556 and $asc <= -11848) return "X";
if($asc >= -11847 and $asc <= -11056) return "Y";
if($asc >= -11055 and $asc <= -10247) return "Z";
if(!trim($s0)) {
return null;
}
$s0=esub($s0,1);
$numstrs='123456789一二三四五六七八九';
$numstr['1']='1';
$numstr['2']='2';
$numstr['3']='3';
$numstr['4']='4';
$numstr['5']='5';
$numstr['6']='6';
$numstr['7']='7';
$numstr['8']='8';
$numstr['9']='9';
$numstr['一']='1';
$numstr['二']='2';
$numstr['三']='3';
$numstr['四']='4';
$numstr['五']='5';
$numstr['六']='6';
$numstr['七']='7';
$numstr['八']='8';
$numstr['九']='9';
if(strstr($numstrs,$s0)) {
return $numstr[$s0];
}
}
全选代码复制
新闻资讯 更多
- 【帝国cms教程】帝国CMS模板变量$GLOBALS[navclassid]用法分析04-03
- 【帝国cms教程】鲜为人知帝国CMS内容页调用上一篇和下一篇的精华方法汇总04-03
- 【帝国cms教程】怎么快速找出帝国CMS数据库配置文件路径及迁移网站后修改技巧!04-03
- 【帝国cms教程】帝国CMS模板$GLOBALS[navclassid]用法详解04-03
- 【帝国cms教程】帝国cms 7.5版列表页分页样式修改笔记04-02
- 【帝国cms教程】解决帝国CMS搜索页面模板不支持灵动标签和万能标签的方法04-02
- 【帝国cms教程】帝国CMS只备份栏目和模板的方法04-02
- 【帝国cms教程】帝国CMS怎样删除清空数据库记录?04-02
热门文章
- 178Moban源码谈谈免费源码与收费源码的区别
- 2帝国CMS忘记后台登陆用户名、密码、认证码的解决方法
- 3帝国CMS(EmpireCMS) v7.5后台任意代码执行漏洞及具体修复方法
- 4帝国CMS和WordPress 哪个好?哪个适合建站?
- 5如何解决Discuz的密码错误次数过多请15分钟后登陆的问题
- 6帝国cms灵动标签取得内容和栏目链接地址
- 7emlog pro 注册码“开心”教程(如果有一天,emlog官方版 或者 emlog免费版 跑路了,那用户怎么办?)
- 8织梦CMS在nginx下设置伪静态方法(附nginx伪静态规则)
- 9帝国cms后台登录出现”您还未登录”怎么解决?
- 10帝国cms7.5忘记登录密码 和忘记登录认证码以及多次登录 失败被锁定解决办法