Blogger Information
Blog 4
fans 0
comment 0
visits 2725
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
搭建ThinkPHP项目 、配置数据库 、增删查改语句
普通收录
Original
614 people have browsed it

搭建ThinkPHP项目

安装thinkphp

第一次安装的话,在命令行下面,切换到你的WEB根目录下面并执行下面的命令:

composer create-project topthink/think tp

这里的tp目录名可任意更改,这个目录就是应用根目录。

示例如下:

12.png

安装完成结果如下:

13.png

创建站点

其中对外访问的目录是public,将网站根目录设置为该目录,如下:

14.png

thinkphp站点创建成功如下:

15.png

thinkphp默认的应用入口文件位于public/index.php

17.png

18.png

tp框架,每个c和m里面的代码只有一个class,必须用class

类里面的方法,每个方法相当于一个页面

19.png

20.png

http://tp/index.php/index/boy

  • http://tp:对应public目录

  • index.php:队形public目录下的index.php

  • index:对应app目录下的controller目录里的index.php文件,并且对应文件中的class名

文件名必须和class名字一致

  • boy:对应boy()方法

在方法里面,可以写任何原生的PHP代码,还可以写tp代码,可以是函数或者类方法

配置数据库

连接数据库

1、利用软件连接

21.png

2、利用database连接

22.png


增删查改语句

查询语句

find是方法,就可以传值,传的是主键的值

不按主键来查询,按姓名来查询,用链式操作,where条件

where也是一个方法,可以是字符串,也可以是数组

23.png

24.png

输出结果如下:

25.png

查询多条: select

多条数据查询出的值是对象,虽然是二维数组,但是外层包裹一个对象

示例如下:

26.png

输出结果:

27.png

返回值 field  返回字段名

返回某个字段,不要二位数组 column()

value 查询某个值


Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post