代理加盟

2023全新代理计划,一站式模板建站,铜牌代理低至699元送终身VIP,独立代理后台,自营贴牌。

您现在的位置: 麦站网 > 站长学院 > 帝国教程 >

帝国CMS给TAG自定义字段获取首字母

来源:本站原创 发布时间:2020-06-30 22:00:33热度:458 ℃我要评论(0

麦站模板建站平台(10年经验),服务数万家企业,固定透明报价。域名注册、主机/服务器、网站源码一站式服务。实体公司,专业团队,值得选择!超过1000套模板已登记版权,合规合法建站,规避版权风险!【点击获取方案】

自己获取TAG首字母教程

 

第一步:在表enewstags增加字段zm(建议用phpmyadmin或直接SQL:

ALTER TABLE `phome_enewstags` ADD `zm` CHAR(2) NOT NULL AFTER `tagname`;)

 

第二步:

找到 eadmintagsAddTags.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>

 

第三步:

修改文件:eadmintagsListTags.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

添加函数:

001function getfirstchar($s0){ 
002 
003$fchar = ord($s0{0});
004 
005if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});
006 
007$s1 = iconv("UTF-8","gb2312", $s0);
008 
009$s2 = iconv("gb2312","UTF-8", $s1);
010 
011if($s2 == $s0){$s = $s1;}else{$s = $s0;}
012 
013$asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
014 
015if($asc >= -20319 and $asc <= -20284) return "A";
016 
017if($asc >= -20283 and $asc <= -19776) return "B";
018 
019if($asc >= -19775 and $asc <= -19219) return "C";
020 
021if($asc >= -19218 and $asc <= -18711) return "D";
022 
023if($asc >= -18710 and $asc <= -18527) return "E";
024 
025if($asc >= -18526 and $asc <= -18240) return "F";
026 
027if($asc >= -18239 and $asc <= -17923) return "G";
028 
029if($asc >= -17922 and $asc <= -17418) return "I";
030 
031if($asc >= -17417 and $asc <= -16475) return "J";
032 
033if($asc >= -16474 and $asc <= -16213) return "K";
034 
035if($asc >= -16212 and $asc <= -15641) return "L";
036 
037if($asc >= -15640 and $asc <= -15166) return "M";
038 
039if($asc >= -15165 and $asc <= -14923) return "N";
040 
041if($asc >= -14922 and $asc <= -14915) return "O";
042 
043if($asc >= -14914 and $asc <= -14631) return "P";
044 
045if($asc >= -14630 and $asc <= -14150) return "Q";
046 
047if($asc >= -14149 and $asc <= -14091) return "R";
048 
049if($asc >= -14090 and $asc <= -13319) return "S";
050 
051if($asc >= -13318 and $asc <= -12839) return "T";
052 
053if($asc >= -12838 and $asc <= -12557) return "W";
054 
055if($asc >= -12556 and $asc <= -11848) return "X";
056 
057if($asc >= -11847 and $asc <= -11056) return "Y";
058 
059if($asc >= -11055 and $asc <= -10247) return "Z";
060 
061if(!trim($s0))
062 
063   {
064 
065       return null;
066 
067   }
068 
069   $s0=esub($s0,1);
070 
071   $numstrs='123456789一二三四五六七八九';
072 
073   $numstr['1']='1';
074 
075   $numstr['2']='2';
076 
077   $numstr['3']='3';
078 
079   $numstr['4']='4';
080 
081   $numstr['5']='5';
082 
083   $numstr['6']='6';
084 
085   $numstr['7']='7';
086 
087   $numstr['8']='8';
088 
089   $numstr['9']='9';
090 
091   $numstr['一']='1';
092 
093   $numstr['二']='2';
094 
095   $numstr['三']='3';
096 
097   $numstr['四']='4';
098 
099   $numstr['五']='5';
100 
101   $numstr['六']='6';
102 
103   $numstr['七']='7';
104 
105   $numstr['八']='8';
106 
107   $numstr['九']='9';
108 
109   if(strstr($numstrs,$s0))
110 
111   {
112 
113   return $numstr[$s0];
114 
115   }
116 
117}

 

    转载请注明来源网址:https://www.xiuzhanwang.com/empire_cms/2468.html

    发表评论

    评论列表(0条)

       
      QQ在线咨询
      VIP限时特惠