2021-07-28 10:04:47 +08:00
|
|
|
<?php
|
2021-08-24 10:36:33 +08:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
2021-11-24 17:17:29 +08:00
|
|
|
* @license https://opensource.org/licenses/Apache-2.0
|
2021-08-24 10:36:33 +08:00
|
|
|
* @link https://www.gougucms.com
|
|
|
|
*/
|
2021-07-28 10:04:47 +08:00
|
|
|
//读取文章分类列表
|
|
|
|
function get_article_cate()
|
|
|
|
{
|
|
|
|
$cate = \think\facade\Db::name('ArticleCate')->order('create_time asc')->select()->toArray();
|
|
|
|
return $cate;
|
|
|
|
}
|