当前位置: 首页 > 站长资讯 > 正文页面

帝国CMS 给TAG添加首字母自动获取首字母

自己获取TAG首字母教程eMZ网站目录_网站网址收录与提交入口

第一步:在表enewstags增加字段zm(建议用phpmyadmin或直接SQL:ALTER TABLE `phome_enewstags` ADD `zm` CHAR(2) NOT NULL AFTER `tagname`;)eMZ网站目录_网站网址收录与提交入口

------------------------------eMZ网站目录_网站网址收录与提交入口

第二步:eMZ网站目录_网站网址收录与提交入口

找到 eadmintagsAddTags.phpeMZ网站目录_网站网址收录与提交入口

查找:$r=$empire->fetch1("select tagid,tagname,cid from {$dbtbpre}enewstags where tagid='$tagid'");eMZ网站目录_网站网址收录与提交入口

修改为:$r=$empire->fetch1("select tagid,tagname,zm,cid from {$dbtbpre}enewstags where tagid='$tagid'");eMZ网站目录_网站网址收录与提交入口

在69行后添加:eMZ网站目录_网站网址收录与提交入口

<tr bgcolor="#FFFFFF">eMZ网站目录_网站网址收录与提交入口

<td width="18%" height="25">TAG首字母:</td>eMZ网站目录_网站网址收录与提交入口

<td width="82%" height="25"> <input name="zm" type="text" id="zm" value="<?=$r[zm]?>" size="42">eMZ网站目录_网站网址收录与提交入口

</td>eMZ网站目录_网站网址收录与提交入口

</tr>eMZ网站目录_网站网址收录与提交入口

第三步:eMZ网站目录_网站网址收录与提交入口

修改文件:eadmintagsListTags.phpeMZ网站目录_网站网址收录与提交入口

--------------------------------------------------------------------eMZ网站目录_网站网址收录与提交入口

require("../../class/userfun.php");eMZ网站目录_网站网址收录与提交入口

查找:$tagname=RepPostVar($add['tagname']);eMZ网站目录_网站网址收录与提交入口

202行后增加:$tagzm=getfirstchar(RepPostVar($_POST['tagname']));eMZ网站目录_网站网址收录与提交入口

--------------------------------------------------------------------eMZ网站目录_网站网址收录与提交入口

查找://修改TAGS 函数里添加:$zm=RepPostVar($add['zm']);eMZ网站目录_网站网址收录与提交入口

查找:$sql=$empire->query("insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values('$tagname',0,0,'$cid');");eMZ网站目录_网站网址收录与提交入口

修改为:$sql=$empire->query("insert into {$dbtbpre}enewstags(tagname,num,zm,isgood,cid) values('$tagname',0,'$tagzm',0,'$cid');");eMZ网站目录_网站网址收录与提交入口

---------------------------------------------------------------------------------------------------------------------------eMZ网站目录_网站网址收录与提交入口

查找:$sql=$empire->query("update {$dbtbpre}enewstags set tagname='$tagname',cid='$cid' where tagid='$tagid'");eMZ网站目录_网站网址收录与提交入口
修改为:$sql=$empire->query("update {$dbtbpre}enewstags set tagname='$tagname',cid='$cid',zm='$zm' where tagid='$tagid'");eMZ网站目录_网站网址收录与提交入口

第四步:eMZ网站目录_网站网址收录与提交入口

打开/e/class/userfun.phpeMZ网站目录_网站网址收录与提交入口

添加函数:eMZ网站目录_网站网址收录与提交入口

function getfirstchar($s0){ eMZ网站目录_网站网址收录与提交入口
$fchar = ord($s0{0});eMZ网站目录_网站网址收录与提交入口

if($fchar >= ord("A") and $fchar <= ord("z") )return strtoupper($s0{0});eMZ网站目录_网站网址收录与提交入口

$s1 = iconv("UTF-8","gb2312", $s0);eMZ网站目录_网站网址收录与提交入口

$s2 = iconv("gb2312","UTF-8", $s1);eMZ网站目录_网站网址收录与提交入口

if($s2 == $s0){$s = $s1;}else{$s = $s0;}eMZ网站目录_网站网址收录与提交入口

$asc = ord($s{0}) * 256 + ord($s{1}) - 65536;eMZ网站目录_网站网址收录与提交入口

if($asc >= -20319 and $asc <= -20284) return "A";eMZ网站目录_网站网址收录与提交入口

if($asc >= -20283 and $asc <= -19776) return "B";eMZ网站目录_网站网址收录与提交入口

if($asc >= -19775 and $asc <= -19219) return "C";eMZ网站目录_网站网址收录与提交入口

if($asc >= -19218 and $asc <= -18711) return "D";eMZ网站目录_网站网址收录与提交入口

if($asc >= -18710 and $asc <= -18527) return "E";eMZ网站目录_网站网址收录与提交入口

if($asc >= -18526 and $asc <= -18240) return "F";eMZ网站目录_网站网址收录与提交入口

if($asc >= -18239 and $asc <= -17923) return "G";eMZ网站目录_网站网址收录与提交入口

if($asc >= -17922 and $asc <= -17418) return "I";eMZ网站目录_网站网址收录与提交入口

if($asc >= -17417 and $asc <= -16475) return "J";eMZ网站目录_网站网址收录与提交入口

if($asc >= -16474 and $asc <= -16213) return "K";eMZ网站目录_网站网址收录与提交入口

if($asc >= -16212 and $asc <= -15641) return "L";eMZ网站目录_网站网址收录与提交入口

if($asc >= -15640 and $asc <= -15166) return "M";eMZ网站目录_网站网址收录与提交入口

if($asc >= -15165 and $asc <= -14923) return "N";eMZ网站目录_网站网址收录与提交入口

if($asc >= -14922 and $asc <= -14915) return "O";eMZ网站目录_网站网址收录与提交入口

if($asc >= -14914 and $asc <= -14631) return "P";eMZ网站目录_网站网址收录与提交入口

if($asc >= -14630 and $asc <= -14150) return "Q";eMZ网站目录_网站网址收录与提交入口

if($asc >= -14149 and $asc <= -14091) return "R";eMZ网站目录_网站网址收录与提交入口

if($asc >= -14090 and $asc <= -13319) return "S";eMZ网站目录_网站网址收录与提交入口

if($asc >= -13318 and $asc <= -12839) return "T";eMZ网站目录_网站网址收录与提交入口

if($asc >= -12838 and $asc <= -12557) return "W";eMZ网站目录_网站网址收录与提交入口

if($asc >= -12556 and $asc <= -11848) return "X";eMZ网站目录_网站网址收录与提交入口

if($asc >= -11847 and $asc <= -11056) return "Y";eMZ网站目录_网站网址收录与提交入口

if($asc >= -11055 and $asc <= -10247) return "Z";eMZ网站目录_网站网址收录与提交入口

if(!trim($s0))eMZ网站目录_网站网址收录与提交入口

{eMZ网站目录_网站网址收录与提交入口

return null;eMZ网站目录_网站网址收录与提交入口

}eMZ网站目录_网站网址收录与提交入口

$s0=esub($s0,1);eMZ网站目录_网站网址收录与提交入口

$numstrs='123456789一二三四五六七八九';eMZ网站目录_网站网址收录与提交入口

$numstr['1']='1';eMZ网站目录_网站网址收录与提交入口

$numstr['2']='2';eMZ网站目录_网站网址收录与提交入口

$numstr['3']='3';eMZ网站目录_网站网址收录与提交入口

$numstr['4']='4';eMZ网站目录_网站网址收录与提交入口

$numstr['5']='5';eMZ网站目录_网站网址收录与提交入口

$numstr['6']='6';eMZ网站目录_网站网址收录与提交入口

$numstr['7']='7';eMZ网站目录_网站网址收录与提交入口

$numstr['8']='8';eMZ网站目录_网站网址收录与提交入口

$numstr['9']='9';eMZ网站目录_网站网址收录与提交入口

$numstr['一']='1';eMZ网站目录_网站网址收录与提交入口

$numstr['二']='2';eMZ网站目录_网站网址收录与提交入口

$numstr['三']='3';eMZ网站目录_网站网址收录与提交入口

$numstr['四']='4';eMZ网站目录_网站网址收录与提交入口

$numstr['五']='5';eMZ网站目录_网站网址收录与提交入口

$numstr['六']='6';eMZ网站目录_网站网址收录与提交入口

$numstr['七']='7';eMZ网站目录_网站网址收录与提交入口

$numstr['八']='8';eMZ网站目录_网站网址收录与提交入口

$numstr['九']='9';eMZ网站目录_网站网址收录与提交入口

if(strstr($numstrs,$s0))eMZ网站目录_网站网址收录与提交入口

{eMZ网站目录_网站网址收录与提交入口

return $numstr[$s0];eMZ网站目录_网站网址收录与提交入口

}eMZ网站目录_网站网址收录与提交入口

}eMZ网站目录_网站网址收录与提交入口

 eMZ网站目录_网站网址收录与提交入口

 eMZ网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章