帝国CMS调用栏目别名的两种方法!
第一种:在最终栏目调用
1 | <?= $class_r [ $GLOBALS [navclassid]][bname]?> |
第二种:万能的,哪里都行,应为是直接查询数据库输出的!
1 2 3 4 5 |
<?php $cr = $empire ->fetch1("select bname from phome_enewsclass where classid= '".$GLOBALS[navclassid]."' limit 1"); echo $cr [ 'bname' ]; ?> |
原文:https://www.moyublog.com/notes/262.html