文库是指网上的开放供网友在线分享文档的平台,能够提供原创系统性知识的网站。现在的文库网站具有很大的营销能力,同时具有很大的广告能力。
我们的文库网站支持doc、docx 、ppt、 pptx、 pdf等主流文档格式。
下面分享一些源码
分类模块开发
namespace app\index\controller;
use app\Base;
use think\App;
use think\facade\Cache;
use think\Request;
use think\facade\View;
use think\facade\Db;
use app\index\model\Index as Indexmodel;
use app\index\service\UserInfo as UserInfoService;
class Common extends Base
{
public function __construct()
{
parent::__construct();
$user_info = Db::name('user') ->where(['uid' => session('user')['uid']])->find();
$controller = Request()->controller();
$action = Request()->action();
$lang_all = config('console')['lang'];
$array_config = Db::name('webconfig')->where(['type'=>0])->select();
$web_config = array();
foreach ($array_config as $k => $v) {
$web_config[$v['code']] = $v['value'];
}
//首页顶级分类展示
$cate_parent = (new Inde