标签 ThinkCMF 下的文章

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

https://www.kancloud.cn/manual/thinkphp5/118003
ThinkPHP5.0完全开发手册

第三方整理手册
THINKPHP 5.0 手册最新版

https://pkg.phpcomposer.com/
使用Composer安装ThinkPHP5

ThinkPHP

漏洞说明
RBAC管理

php5.6+Redis+Windows7安装 (phpstudy)
igbinary
redis
phpstudy2016安装redis扩展
windows 上的 PHP 开发环境用什么比较好
ThinkPHP5基础讲解视频教程
[ThinkPHP5快速开发企业站点[全程实录]更新中...][11]

开发环境

基于 ThinkPHP框架

https://gitee.com/karson/fastadmin 官网

ThinkphpCMF内容管理框架
https://github.com/thinkcmf/thinkcmf
ThinkCMF FAQ ThinkCMF常见难解问题手册
ThinkPHP5.1完全开发手册
教程视频
ThinkCMF快速建站之模板开发
ThinkCMF 5.0教程

自定义提示

thinkphp 默认提示信息 thinkphp5 自定义跳转提示success error页面美化
https://www.fujieace.com/thinkphp/tp5-layer.html
https://cloud.tencent.com/info/afd9e1a100b04f72b191c4814f0fb1f5.html
http://www.twbweb.com/2104.html
https://www.kancloud.cn/w113211/layers/268062
https://www.kancloud.cn/w113211/layers/268091
http://www.php.cn/php-weizijiaocheng-395179.html

http://www.twbweb.com/category/php

第三方教程视频

ThinkPHP5基础讲解视频教程

独孤九贱(5)_ThinkPHP5视频教程


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中实现为各个分类下的文章添加自定义字段的想法