Table of Contents
thinkPHP Study Notes - Installation and Configuration
Home Backend Development PHP Tutorial thinkPHP study notes - installation and configuration_PHP tutorial

thinkPHP study notes - installation and configuration_PHP tutorial

Jul 13, 2016 am 10:04 AM
thinkphp main study Install article notes Configuration

thinkPHP Study Notes - Installation and Configuration

This article mainly introduces thinkPHP, a domestic MVC framework. What is discussed here is the installation and configuration of thinkphp, as well as a simple example. , friends in need can refer to it.

The domestic framework thinkPHP is an MVC framework. This framework initially simulates JAVA's struts framework, uses a single entry file to simulate JAVA's filters, and uses action to simulate the STRUTS controller ACTION. So why in his MVC, M is model, V is view, and control is the cause of action.

In version 3.2.3, control was changed to C, which is also more formal, because springMVC in the JAVA world has become popular. The control used by spring no longer uses the definition of action. In fact, action represents control itself. It’s misleading, the control is C, why is there an aciton, it’s confusing.

The most difficult thing to understand about thinkphp is its access method. The explanation in the official document is a bit misleading. According to the official document, there must be an error because the official document does not explain it clearly!

The installation of thinkphp is actually very simple. As long as its main program file is required, a series of directories can be generated. But what is the relationship between the URL and its control and tpl? The official document is so vague that anyone who has used JAVA will be fooled by the official document until they vomit blood!

Can the official document be clearer? ?

After actual use, I summarized the following points:

1. Install thinkphp:

Create admin.php or any other name in the same directory as the main program thinkPHP

The code is as follows:


//Define project name and path
define('APP_NAME', ''); //When the name is space-time, the generated folder is not prefixed
define('APP_PATH', './admin/');//This means generating the admin directory in the same directory as the main program THINKPHP
define('APP_DEBUG', true);//Start editing mode, force compilation of files, no caching
//Load framework entry file
require( "../ThinkPHP/ThinkPHP.php");//Main program entry file

2, file directory:

The automatically generated file directory is

common: a place to write functions

conf: configuration file, such as configuring database connection address

lang: language package, internationalization

lib: action and model are all here, which is a more important place. It is a completely different concept from JAVA’s lib which is a JAR package

runtime: runtime cache file

tpl: template, which is an html file

3, access method:

URL: localhost/thinkphp/admin.php?m=Show&a=add

Explanation: Local/project directory/single entry file just created? model=class name&action=method name

Meaning: Enter the add method in the Show class in the single entry file admin.php

Emphasis: The class name starts with an uppercase letter, and the lowercase letters will not be found. This troubled me. I worked on it all afternoon, and it turned out that I only recognized the uppercase class names, but not the lowercase ones

infopath style URL: localhost/thinkphp/admin.php/Show/add

Explanation: Same as the default, except that M A is not written out

4. Write classes and methods:

The author of thinkphp must be a person who likes to toss and is a perfectionist, so he thought of this way to control the program. The entire program is based on the action class. An action class is equivalent to a page, and the The method is to perform operations related to this page, such as adding, deleting, modifying, and checking. This is in line with the way Chinese people think, but the reusability is not high.

Write file: lib/action/ShowAction.class.php

The code is as follows:


//Show is the class name, Action is just a recognition aid, it must be written, but it can be ignored when calling. Remember to capitalize it. If you write it in lowercase, it will also change it to uppercase for you, so that you can't find the module of show in lowercase. m=Show
class ShowAction extends Action {
//add is the action method, a=add
public function add(){
//Output page CC, it automatically loads the cc.html file under the Show file in the default TPL directory. If there is no cc here, add.html with the same method name will be loaded. If there is neither cc.html nor add.html, an error will be reported
$this->display('cc');
}
}

5, write template:

Loading templates are mentioned above, let’s write one now:

tpl/Show/cc.html

The code is as follows:


A normal HTML file

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/963994.htmlTechArticlethinkPHP Study Notes Installation and Configuration This article mainly introduces thinkPHP, a domestic MVC framework. What is discussed here It is the installation and configuration of thinkphp, as well as a simple example, if needed...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to run thinkphp project How to run thinkphp project Apr 09, 2024 pm 05:33 PM

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

What should I do if the notes I posted on Xiaohongshu are missing? What's the reason why the notes it just sent can't be found? What should I do if the notes I posted on Xiaohongshu are missing? What's the reason why the notes it just sent can't be found? Mar 21, 2024 pm 09:30 PM

As a Xiaohongshu user, we have all encountered the situation where published notes suddenly disappeared, which is undoubtedly confusing and worrying. In this case, what should we do? This article will focus on the topic of "What to do if the notes published by Xiaohongshu are missing" and give you a detailed answer. 1. What should I do if the notes published by Xiaohongshu are missing? First, don't panic. If you find that your notes are missing, staying calm is key and don't panic. This may be caused by platform system failure or operational errors. Checking release records is easy. Just open the Xiaohongshu App and click "Me" → "Publish" → "All Publications" to view your own publishing records. Here you can easily find previously published notes. 3.Repost. If found

There are several versions of thinkphp There are several versions of thinkphp Apr 09, 2024 pm 06:09 PM

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

How to install Podman on Ubuntu 24.04 How to install Podman on Ubuntu 24.04 Mar 22, 2024 am 11:26 AM

If you have used Docker, you must understand daemons, containers, and their functions. A daemon is a service that runs in the background when a container is already in use in any system. Podman is a free management tool for managing and creating containers without relying on any daemon such as Docker. Therefore, it has advantages in managing containers without the need for long-term backend services. Additionally, Podman does not require root-level permissions to be used. This guide discusses in detail how to install Podman on Ubuntu24. To update the system, we first need to update the system and open the Terminal shell of Ubuntu24. During both installation and upgrade processes, we need to use the command line. a simple

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

How to Install and Run the Ubuntu Notes App on Ubuntu 24.04 How to Install and Run the Ubuntu Notes App on Ubuntu 24.04 Mar 22, 2024 pm 04:40 PM

While studying in high school, some students take very clear and accurate notes, taking more notes than others in the same class. For some, note-taking is a hobby, while for others, it is a necessity when they easily forget small information about anything important. Microsoft's NTFS application is particularly useful for students who wish to save important notes beyond regular lectures. In this article, we will describe the installation of Ubuntu applications on Ubuntu24. Updating the Ubuntu System Before installing the Ubuntu installer, on Ubuntu24 we need to ensure that the newly configured system has been updated. We can use the most famous "a" in Ubuntu system

Detailed steps to install Go language on Win7 computer Detailed steps to install Go language on Win7 computer Mar 27, 2024 pm 02:00 PM

Detailed steps to install Go language on Win7 computer Go (also known as Golang) is an open source programming language developed by Google. It is simple, efficient and has excellent concurrency performance. It is suitable for the development of cloud services, network applications and back-end systems. . Installing the Go language on a Win7 computer allows you to quickly get started with the language and start writing Go programs. The following will introduce in detail the steps to install the Go language on a Win7 computer, and attach specific code examples. Step 1: Download the Go language installation package and visit the Go official website

Which one is better, laravel or thinkphp? Which one is better, laravel or thinkphp? Apr 09, 2024 pm 03:18 PM

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

See all articles