tp5框架基础配置和加载

1.官网 http://www.thinkphp.cn/down.html

安装后

默认入口public/index.php

2.前后台设置加载模板文件 app下的index/controller/Index.php文件里的index方法输出

*{ padding: 0; margin: 0; } .think_default_text{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }

:)

ThinkPHP V5
十年磨一剑 - 为API开发设计的高性能框架

[ V5.0 版本由 七牛云 独家赞助发布 ]
'; } }

 

3.后台的界面输出 http://www.tp.com/public/index.php/admin/index

(http://www.tp.com/public/index.php/admin/index/index.html)

fetch()调用视图的文件,需要设置 use think\Controller;
        //继承(thinkphp/library/think/Controller.php加载模板输出);继承 extends Controller
        return $this->fetch();
    }
}

 

2.静态资源放在public/static里新建后台目录admin和前台目录index。分别引各自的js/css/img等资源文件

yuan

 

hou

 

 

你可能感兴趣的:(tp5)