nk-lihaink-cn/app/api/common.php

7 lines
180 B
PHP
Raw Normal View History

2021-07-28 10:04:47 +08:00
<?php
//读取文章分类列表
function get_article_cate()
{
$cate = \think\facade\Db::name('ArticleCate')->order('create_time asc')->select()->toArray();
return $cate;
}