ThinkPHP

官网:http://www.thinkphp.cn/ && GitHub
手册:https://www.kancloud.cn/@manual && 5.1
ThinkPHP5.1完全开发手册

ThinkCMF

https://www.thinkcmf.com/ && GitHub
插件
模板
手册 && 5.1
ThinkCMF FAQ
ThinkCMF5.1开发手册

GitHub

thinkcmf
demos
thinkcmfapi
mall

教程视频

https://chuanke.baidu.com/s4472461.html
https://study.163.com/courses-search?keyword=ThinkCMF

https://www.qdcrazy.cc/
http://www.crazys.pub/

thinkcmf 重置密码

<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 老猫 <thinkcmf@126.com>
// +----------------------------------------------------------------------
namespace app\portal\controller;

use cmf\controller\HomeBaseController;

class IndexController extends HomeBaseController
{
    public function index()
    {    
        echo cmf_password('adminadmin');//引号内密码自行设置;
        exit;
        $this->display(":index");
        // return $this->fetch(':index');
    }
}
\app\portal\controller\IndexController.php 

https://github.com/thinkcmf/demos
repository for ThinkCMF5.1 app, api, theme, plugin demos
演示应用、插件、模板和api,方便开发者学习 thinkcmf.

在thinkcmf5中实现为各个分类下的文章添加自定义字段的想法

标签:PHP, ThinkPHP, ThinkCMF

你的评论