What is ThinkPHP?
ThinkPHP是一个免费的、开源的、快速的、基于MVC模式的、面向对象的轻量级开发框架。
Getting ThinkPHP
http://www.thinkphp.cn/
ThinkPHP project building tutorial
http://www.icoolxue.com/play/2284
How to:
1.安装wamp,在www文件夹中创建ThinkPHP文件夹 2.下载ThinkPHP核心文件包 3.将核心文件包中的ThinkPHP文件夹复制到wamp的www文件夹的ThinkPHP文件夹中 4.在www文件夹的ThinkPHP文件夹中创建入口文件index.php和admin.php 5.访问www文件夹的ThinkPHP文件夹,自动创建Home文件夹和Admin文件夹 6.在www文件夹的ThinkPHP文件夹中创建Public文件夹,存放Home和Admin的共同类文件
Entry file:
1.Index.php
<?php //1.确定应用名称 Home define('APP_NAME','Home'); //2.确定应用路径 define('APP_PATH','./Home/'); //3.引用核心文件 require './ThinkPHP/ThinkPHP.php';?>
2.admin.php
<?php //1.确定应用名称 Admin define('APP_NAME','Admin'); //2.确定应用路径 define('APP_PATH','./Admin/'); //3.引用核心文件 require './ThinkPHP/ThinkPHP.php';?>
What is ThinkPHP?
ThinkPHP是一个免费的、开源的、快速的、基于MVC模式的、面向对象的轻量级开发框架。
Getting ThinkPHP
http://www.thinkphp.cn/
ThinkPHP project building tutorial
http://www.icoolxue.com/play/2284
Method:
1.安装wamp,在www文件夹中创建ThinkPHP文件夹 2.下载ThinkPHP核心文件包 3.将核心文件包中的ThinkPHP文件夹复制到wamp的www文件夹的ThinkPHP文件夹中 4.在www文件夹的ThinkPHP文件夹中创建入口文件index.php和admin.php 5.访问www文件夹的ThinkPHP文件夹,自动创建Home文件夹和Admin文件夹 6.在www文件夹的ThinkPHP文件夹中创建Public文件夹,存放Home和Admin的共同类文件
Entry file:
1.Index.php
<?php //1.确定应用名称 Home define('APP_NAME','Home'); //2.确定应用路径 define('APP_PATH','./Home/'); //3.引用核心文件 require './ThinkPHP/ThinkPHP.php';?>
2. admin.php
<?php //1.确定应用名称 Admin define('APP_NAME','Admin'); //2.确定应用路径 define('APP_PATH','./Admin/'); //3.引用核心文件 require './ThinkPHP/ThinkPHP.php';?>
This article explains the relevant summary of ThinkPHP. For more related content, please pay attention to the php Chinese website.
Related recommendations:
Summary of relevant content on the return value of database operations in ThinkPHP
About thinkphp base class Related content
ThinkPHP user login registration related code cases
The above is the detailed content of Related summary of ThinkPHP. For more information, please follow other related articles on the PHP Chinese website!