一 : ThinkPHP配置前准备:
配置前需要安装PHP5.4.0以上版本
ThinkPHP5.0完全开发手册
1 : 对于Mac系统
Mac上安装配置Apache +Tomcat+JDK
2 : linux 或者 CentOS 等
php7详细安装教程(linux + nginx +PHP + mysql)
Linux 安装和卸载 nginx操作
3 : 下面以本地电脑为例:
打开: http://localhost 显示 it works ! 说明Apache配置ok,
复制一个info.php文件到根目录下,http://localhost/info.php显示PHP相关信息说明php环境ok.
在上面步骤3条件下,继续往下
二 : ThinkPHP文件下载
下载方式一:
(1) : 官网 http://www.thinkphp.cn/
注册登录官网,直接下载:
(2) : 找到你的Apache的web根目录,
比如我的是
/Library/WebServer/Documents/
将下载的文件直接解压到该路径下:
(3) : 打开连接: http://localhost/public/
(注意: 如果你的项目不是在根路径下,比如在创建项目/thinkPHPPro/下
那么路径应该是http://你的域名/thinkPHPPro/public)
显示如下,说明基础环境ok:
如果不成功,给runtime文件设置一下权限:
chmod -R 777 /Library/WebServer/Documents/runtime
下载方式二 : 通过git 下载(4行语句) git安装文档
cd /Library/WebServer/Documents/
git init
git clone https://git.coding.net/liu21st/thinkphp5.git
git clone https://git.coding.net/liu21st/framework.git
(将thinkphp5移动到framework文件夹下)
简单下载示例(可忽视):
-bash: php-version: command not found
localhost:niexiaobo niexiaobo$ cd /Users/niexiaobo/Downloads/php5
localhost:php5 niexiaobo$ git init
Initialized empty Git repository in /Users/niexiaobo/Downloads/php5/.git/
localhost:php5 niexiaobo$ git clone https://git.coding.net/liu21st/thinkphp5.git
Cloning into 'thinkphp5'...
remote: Counting objects: 13519, done.
remote: Compressing objects: 100% (19/19), done.
remote: Total 13519 (delta 10), reused 0 (delta 0)
Receiving objects: 100% (13519/13519), 5.76 MiB | 3.20 MiB/s, done.
Resolving deltas: 100% (8588/8588), done.
localhost:php5 niexiaobo$ git clone https://git.coding.net/liu21st/framework.git
Cloning into 'framework'...
remote: Counting objects: 43528, done.
remote: Compressing objects: 100% (16100/16100), done.
remote: Total 43528 (delta 26953), reused 42770 (delta 26499)
Receiving objects: 100% (43528/43528), 10.67 MiB | 2.88 MiB/s, done.
Resolving deltas: 100% (26953/26953), done.
localhost:php5 niexiaobo$
三 : ThinkPHP文件目录结构
ThinkPHP 5相对于以往3的版本做了一些改变:
project 应用部署目录
├─application 应用目录(可设置)
│ ├─common 公共模块目录(可更改)
│ ├─index 模块目录(可更改)
│ │ ├─config.php 模块配置文件
│ │ ├─common.php 模块函数文件
│ │ ├─controller 控制器目录
│ │ ├─model 模型目录
│ │ ├─view 视图目录
│ │ └─ ... 更多类库目录
│ ├─command.php 命令行工具配置文件
│ ├─common.php 应用公共(函数)文件
│ ├─config.php 应用(公共)配置文件
│ ├─database.php 数据库配置文件
│ ├─tags.php 应用行为扩展定义文件
│ └─route.php 路由配置文件
├─extend 扩展类库目录(可定义)
├─public WEB 部署目录(对外访问目录)
│ ├─static 静态资源存放目录(css,js,image)
│ ├─index.php 应用入口文件
│ ├─router.php 快速测试文件
│ └─.htaccess 用于 apache 的重写
├─runtime 应用的运行时目录(可写,可设置)
├─vendor 第三方类库目录(Composer)
├─thinkphp 框架系统目录
│ ├─lang 语言包目录
│ ├─library 框架核心类库目录
│ │ ├─think Think 类库包目录
│ │ └─traits 系统 Traits 目录
│ ├─tpl 系统模板目录
│ ├─.htaccess 用于 apache 的重写
│ ├─.travis.yml CI 定义文件
│ ├─base.php 基础定义文件
│ ├─composer.json composer 定义文件
│ ├─console.php 控制台入口文件
│ ├─convention.php 惯例配置文件
│ ├─helper.php 助手函数文件(可选)
│ ├─LICENSE.txt 授权说明文件
│ ├─phpunit.xml 单元测试配置文件
│ ├─README.md README 文件
│ └─start.php 框架引导文件
├─build.php 自动生成定义文件(参考)
├─composer.json composer 定义文件
├─LICENSE.txt 授权说明文件
├─README.md README 文件
├─think 命令行入口文件
四 : ThinkPHP简单使用
(1) : 修改默认页面
上文中有介绍,打开连接: http://localhost/public/显示一段默认页面.
那么该页面具体位置在哪呢?
对默认项目的
application/index/controller/index.php
做一些简单的修改:
默认代码:
*{ 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 } ';
}
}
修改后:
保存后http://localhost/public链接显示的就是 'Hello,World! this is default page !'这句话了.
(2) : 模板渲染
修改项目的application/index/controller/index.php
文件:
主要修改有:引用Controller类 , 扩展index类方法 , 添加方法hello.
修改后如下:
打开http://localhost/public/index.php/index/index/hello链接
显示如下:
上述只是通过修改模板,无需创建相应文件就可以返回.
(3) : 模板渲染, 并创建文件
还是修改项目的application/index/controller/index.php
文件:
index方法,结果如下:
assign('name',$name);
return $this->fetch();
}
public function hello()
{
return 'hello';
}
}
修改后index需要获取变量的,此时打开http://localhost/public链接会报错的,因为还没有index.html文件.
进入项目的application/index/下创建view文件夹,再进入view下创建index文件夹进入再创建index.html.(如下图所示)
编辑index.html:
hello {$name}
hello {$name}!
打开地址http://localhost/public/index.php/index/index显示:
index.html展示时需要一个name变量值,而该值是通过index.php中模板方法传递过来的.
(5) : 通过参数param获取内容
修改上面index.php中的hello方法:
public function hello(Request $request)
{
echo 'hello :'.$request->param('name').'!';
echo '你今年'.$request->param('age').'岁 !';
}
打开链接地址:
http://localhost/public/index.php/index/index/hello.html?name=bobo&age=18
参数有姓名和年龄,结果如图:
(4) : 链接数据库mysql
还是修改项目的application/index/controller/index.php
文件:
准备工作:
安装mysql,创建数据库testDB,创建表testTable,表里面添加几条数据,包含字段id, uname,等等
添加dbTest方法(域名localhost不行的话要用127.0.0.1),
use think\Db;//引入数据库
结果如下:
assign('name',$name);
return $this->fetch();
}
public function hello()
{
return 'hello';
}
public function dbTest()
{
return Db::connect([
'type'=>'mysql',
'hostname'=>'127.0.0.1',
'database'=>'testDB',
'username'=>'root',
'password'=>'root',
])
->table('testTable')
->where('id','2')
->value('uname');
}
}
dbTest(): 查询testTable表中id=2 的uname字段:
打开链接http://localhost/public/index.php/index/index/dbtest
结果如下:
(6) : 统一配置数据库mysql信息
在上面dbTest(): 中我们需要设置登录信息, 下面开始在公共文件统一配置:
进入项目文件编辑: /application/database.php
return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
'database' => 'testA',
// 用户名
'username' => 'root',
// 密码
'password' => 'root',
// 端口
'hostport' => '3306',
// 连接dsn
'dsn' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
.
.
.
还是修改项目的application/index/controller/index.php
文件:
添加dbTest2方法(查询testTable表下id=2的整条数据):
public function dbTest2()
{
$res = Db::table('testTable')->where('id',2)->find();
dump(is_null($res)?'没有查到':$res);
}
打开连接http://localhost/public/index.php/index/index/dbTest2
结果如下,返回成功,以后就不需要重复设置登录信息了:
更多数据库操作方法: ThinkPHP5.0完全开发手册
- 数据库
- 连接数据库
- 基本使用
- 查询构造器
- 查询数据
- 添加数据
- 更新数据
- 删除数据
- 查询方法
- 查询语法
- 链式操作
- where
- table
- alias
- field
- order
- limit
- page
- group
- having
- join
- union
- distinct
- lock
- cache
- comment
- fetchSql
- force
- bind
- partition
- strict
- failException
- sequence
- 聚合查询
- 时间查询
- 高级查询
- 视图查询
- 子查询
- 原生查询
- 查询事件
- 事务操作
- 监听SQL
- 存储过程
- 数据集
- 分布式数据库
(https://www.cnblogs.com/samphp/p/8594291.html)
//1、单条查询
public function dbTest4()
{
$res = Db::table('pzq_article')
->field(['title'=>'标题','id'=>'编号'])//可添加别名
->where('id','=',20)//如果是等号,=可以省略
->find();//如果是主键查询,可省略上面where,这行写->find(20);
dump(is_null($res)?'没有查到':$res);
}
//2、多条查旬
public function dbTest5()
{
$res = Db::table('pzq_article')
->field(['id','cat_id','title'])
->where([
['id','>',20],
['cat_id','=',2],
])//一个条件,直接用表达式->where('id','>',20)。多个条件用数组
->order('id desc')->limit(3)->select();
if(empty($res)){
return '没有查到';
}else{
dump($res);
}
}
//3、数据添加
public function dbTest6()
{
$data = [
'name'=>'Sam2',
'age'=>'29',
'posttime'=>time()
];
$dataall=[
['name'=>'Sam3','age'=>'29','posttime'=>time()],
['name'=>'Sam4','age'=>'30','posttime'=>time()],
];
//(1)单条插入
//return Db::table('test')->data($data)->insert();
//(2)插入同时返回新增主键id
//return Db::table('test')->insertGetId($data);
//(3)插入多条数据
return Db::table('test')->data($dataall)->insertAll();
}
//4更新数据
public function dbTest7()
{
// return Db::table('test')
// ->where('id','=',4)
// ->update(['name'=>'SamC','age'=>'31']);
//如果where条件是主键,还可以如下使用
return Db::table('test')
->update(['name'=>'SamCheng','age'=>'30','id'=>4]);
}
//5删除操作
public function dbTest8()
{
//return Db::table('test')->delete(6);
//或者
return Db::table('test')->where('id',5)->delete();
}
//mysql原生语句 查询
public function dbTest9()
{
$sql = "select name,age from test where id>2";
dump(Db::query($sql));
}
//mysql 增、删、改 用Db::execute($sql)
public function dbTest10()
{
//$sql = "update test set name='samC' where id=4";
//$sql = "insert test set name='Yan',age='30'";
$sql = "delete from test where id=4";
return Db::execute($sql);
}
五 : ThinkPHP路由设置
(7) : 路由: 隐藏真实路径
修改项目路径下 /application/route.php
修改前初始代码:
// +----------------------------------------------------------------------
return [
'__pattern__' => [
'name' => '\w+',
],
'[hello]' => [
':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
':name' => ['index/hello', ['method' => 'post']],
],
];
添加一段代码:
[
'name' => '\w+',
],
'[hello]' => [
':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
':name' => ['index/hello', ['method' => 'post']],
],
'__alias__' => [
'home' => 'index/index',
],
];
或者这样写:
意思是真实路径里的index/index都可以使用home来代替:
比如:步骤(6)中打开连接http://localhost/public/index.php/index/index/dbTest2
和
打开连接http://localhost/public/index.php/home/dbTest2
效果是一样的.
更多路由设置参考 ThinkPHP5.1完全开发手册
(8) : 路由: 页面跳转
下面以登录为例,登录成功后跳转到首页index,失败后跳转错误页面
还是修改项目的application/index/controller/index.php
文件:
添加login方法和check()方法:
// 显示登录页面
public function login(){
return $this->fetch();
}
//提交登录
public function check(){
//获取参数
$user=$_POST['username'];
$pwd=$_POST['password'];
// 判断登陆成功失败的逻辑
if($user=='admin' && $pwd=='123'){
//如果成功则跳到index/index页面
$this->success('登陆成功',url('/index/index'));
}else{
$this->error('登陆失败');
}
}
下面路径下创建login.html登录验证页面:
/application/index/view/index/login.html
代码:
登陆
打开下面地址
http://localhost/public/index.php/index/index/login.html
输入错误的username,点击提交按钮:
登录失败, 跳转错误页面(默认3秒倒计时):
输入正确账号密码admin 和 123.
跳转成功页面(默认3秒倒计时),然后回到index页面:
(9) : 路由: 页面重定向
打开某个链接时,直接跳转到其他地址
还是修改项目的application/index/controller/index.php
文件:
添加跳转方法:
// 页面重定向
public function jumpto(){
$this->redirect('https://www.baidu.com');
}
打开链接:
http://localhost/public/index.php/index/index/jumpto
成功跳转到百度页面:
(10-A) : 模型的使用 : 查询表
目的 : 通过创建使用Model来查询表数据
详细参考 : 模型定义文档
1 : 首先数据库有一张表chat.
2 : 在/application/index/下新建model文件夹,并创建一个Chat.php文件(根据表名, 驼峰命名,首字母大写)
Chat.php :
3 : 还是修改项目的application/index/controller/index.php文件:
添加跳转方法:
//模型
public function user()
{
// 实例化数据模型
$user=new \app\index\model\Chat;
//get(3): 查询主键为3的数据,并转成array返回
dump($user::get(3)->toArray());
}
4 : 打开连接:http://localhost/public/index.php/home/user
也即是http://localhost/public/index.php/index/index/user
(10-B) : 模型的理解
通过上述对模型的简单使用之后,接着对模型做一个简单是介绍:
1 这里的模型model到底是什么?
根据使用方法:
use think\Model;
class Chat extends Model
知道: 我们新建的Chat模型文件,其实是继承了think\Model文件的功能和方法,说明Chat模型在创建初始化结束后,就拥有了think下Model的功能.
修改上述控制器方法
//模型
public function user()
{
// 实例化数据模型
$user=new \app\index\model\Chat;
//直接打印模型
dump($user);
}
打开链接http://localhost/public/index.php/index/index/user
结果如下:
object(app\index\model\Chat)#10 (35) {
["table":protected] => string(10) "think_user"
["connection":protected] => array(0) {
}
["parent":protected] => NULL
["query":protected] => NULL
["name":protected] => string(4) "Chat"
["class":protected] => string(20) "app\index\model\Chat"
["error":protected] => NULL
["validate":protected] => NULL
["pk":protected] => NULL
["field":protected] => array(0) {
}
["except":protected] => array(0) {
}
["disuse":protected] => array(0) {
}
["readonly":protected] => array(0) {
}
["visible":protected] => array(0) {
}
["hidden":protected] => array(0) {
}
["append":protected] => array(0) {
}
["data":protected] => array(0) {
}
["origin":protected] => array(0) {
}
["relation":protected] => array(0) {
}
["auto":protected] => array(0) {
}
["insert":protected] => array(0) {
}
["update":protected] => array(0) {
}
["autoWriteTimestamp":protected] => bool(false)
["createTime":protected] => string(11) "create_time"
["updateTime":protected] => string(11) "update_time"
["dateFormat":protected] => string(11) "Y-m-d H:i:s"
["type":protected] => array(0) {
}
["isUpdate":protected] => bool(false)
["force":protected] => bool(false)
["updateWhere":protected] => NULL
["failException":protected] => bool(false)
["useGlobalScope":protected] => bool(true)
["batchValidate":protected] => bool(false)
["resultSetType":protected] => string(5) "array"
["relationWrite":protected] => NULL
}
返回的一堆信息中:
第一条:
["table":protected] => string(10) "think_user"
意思是该模型设置的需要修改的表是think_user.
中间某条:
["append":protected]
意思是具有追加数据的功能
中间某条:
["data":protected]
专门存储数据的
比如下面操作修改的就是这个data:
$user = new User;
$user->data([
'name' => 'thinkphp',
'email' => '[email protected]'
]);
所以,模型文件能够更好的帮我们处理一些数据库相关的操作逻辑
(11) : 控制器 : 创建新的控制器
目前为止都是在项目的application/index/controller/index.php修改,这个默认控制器文件index.php .
创建文件login.php:
application/index/controller/login.php
写法和index.php一样:
打开地址:
http://localhost/public/index.php/index/login
http://localhost/public/index.php/index/login/hello
(11) : 后台目录文件
同默认控制器,在 application/下创建admin文件,专门用来存放和管理后台页面代码(开发方式和上文基本一致):
控制器:
application/admin/controller/index.php
前端html入口(view下存放):
application/admin/view/index.html
前端html 的CSS,js,image等静态文件存储路径:
/public/static/
前端html 的CSS,js,image静态文件生效设置:
编辑/application/config.php:
// 视图输出字符串内容替换
'view_replace_str' => [
'__PUBLIC__'=>'/public/static', //将__PUBLIC__指向public/static
'__ROOT__' => '/',
],
引用/public/static下home/css文件:
经过上述配置后,访问http://localhost/public/index.php/admin/ 就可以进入后台管理界面.