php使用thinkphp搭建项目
Posted 木心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php使用thinkphp搭建项目相关的知识,希望对你有一定的参考价值。
1、创建项目根目录,配置虚拟主机
1.1、创建项目根目录phpDemo01,将thinkphp_3.2.3_full.zip压缩包中ThinkPHP文件夹复制到项目根目录phpDemo01中。
1.2、主机名localhost,端口80,站点目录设置为项目根目录phpDemo01
配置文件httpd.conf
在hosts文件配置:
重启apache服务:win10系统,搜索"服务"
1.3、测试
浏览器输入http://web.abc123.com/,OK。将我上一篇博客 php(一)搭建php开发环境 的a.php文件复制到项目根目录phpDemo01中。浏览器输入http://web.abc123.com/a.php,测试OK。
2、创建基于thinkphp的项目
在项目根目录phpDemo01下面创建子项目helloworldProject,新建index.php
<?php //入口文件 include("../ThinkPHP/ThinkPHP.php");
浏览器访问项目helloworldProject的index.php后会自动创建Common、Home、Runtime三个文件夹。
3、新建UserController.class.php
浏览器访问:
http://web.abc123.com/helloworldProject/index.php?m=Home&c=user&a=add
http://web.abc123.com/helloworldProject/index.php?c=user&a=add
http://web.abc123.com/helloworldProject/index.php/Home/user/add
以上是关于php使用thinkphp搭建项目的主要内容,如果未能解决你的问题,请参考以下文章
PHP利用pdo_odbc实现连接数据库示例【基于ThinkPHP5.1搭建的项目】
环境搭建(Nginx + PHP7 + Mysql + 运行ThinkPHP5项目)
Apache+PHP+THINKPHP框架在windows上的搭建