common.php 326 B

123456789101112
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2021 勾股工作室
  4. * @license https://opensource.org/licenses/Apache-2.0
  5. * @link https://www.gougucms.com
  6. */
  7. //读取文章分类列表
  8. function get_article_cate()
  9. {
  10. $cate = \think\facade\Db::name('ArticleCate')->order('create_time asc')->select()->toArray();
  11. return $cate;
  12. }