


First introduction to ThinkPHP controller, first introduction to thinkphp_PHP tutorial
First introduction to ThinkPHP controller, first introduction to thinkphp
This article focuses on the definition and basic operation content of ThinkPHP controller. I hope everyone can have a preliminary understanding of ThinkPHP controller. .
The most basic controller:
<?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function index(){ } public function hello(){ echo 'hello'; } }
The name of the controller is named in camel case (the first letter is capitalized), and the controller file is located at Application/Home/Controller/IndexController.class.php
The hello method of the IndexController controller class is the operation method. Visit the following URL address:
http://serverName/Home/Index/hello
will output "hello"
Pre and post operations:
<?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function _before_index(){ echo "index.before<br>"; } public function index(){ echo "index<br>"; } public function _after_index(){ echo "index.after<br>"; } }
Configure ACTION_SUFFIX to change the way the operation method is written:
Because the operation method is a method of the controller, it may not be defined if it conflicts with the system's keywords. In this case, we can set the suffix of the operation method to solve the problem, such as
'ACTION_SUFFIX' => 'Action', // Operation method suffix
Set the suffix of the operation method to Action, so the controller’s operation method definition is adjusted to:
<?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function listAction(){ echo 'list'; } public function helloAction(){ echo 'hello'; } public function testAction(){ echo 'test'; } }
Empty controller and empty operation method:
Empty operation means that when the system cannot find the requested operation method, it will locate the empty operation (_empty) method for execution. Using this mechanism, we can optimize error pages and some URLs.
As shown in the picture above, when visiting:
http://serverName/index.php/Home/City/beijing/
Since the City controller does not define the beijing, shanghai or shenzhen operation methods, the system will locate the empty operation method _empty for analysis. The parameter of the _empty method is the operation name in the current URL, so the results output in sequence are :
How did you find me?
Operations are bound to classes: (Function: You can define a class for each operation method instead of a method of the controller class)
Take the URL access as http://serverName/Home/Index/index as an example,
The original controller file definition location is: Application/Home/Controller/IndexController.class.php
The controller class is defined as follows:
namespace Home\Controller; use Think\Controller; class IndexController extends Controller{ public function index(){ echo '执行Index控制器的index操作'; } }
As you can see, we are actually calling the index method of the HomeControllerIndexController class.
Set parameters through configuration file
'ACTION_BIND_CLASS' => True,
After setting, the controller file location is changed to: Application/Home/Controller/Index/index.class.php
The controller class is defined as follows:
namespace Home\Controller\Index; use Think\Controller; class index extends Controller{ public function run(){ echo '执行Index控制器的index操作'; } }
Now, what we are calling is actually the run method of the HomeControllerIndexindex class.
The above is the entire content of this article. I hope it will be helpful to everyone in learning PHP programming.
Articles you may be interested in:
- Thinkphp controller scheduling usage example
- A brief description of the plug-in controller function of ThinkPHP3.2.2
- ThinkPHP URL The relationship between path access and module controllers
- Methods for mutual calls between ThinkPHP controllers
- Solutions to the problem that javascript code in ThinkPHP controllers cannot be executed
- ThinkPHP3. 2.2 plug-in controller function
- Detailed explanation of ThinkPHP controller

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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.

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.

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.

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.

Learning Laravel from scratch: Detailed explanation of controller method invocation In the development of Laravel, controller is a very important concept. The controller serves as a bridge between the model and the view, responsible for processing requests from routes and returning corresponding data to the view for display. Methods in controllers can be called by routes. This article will introduce in detail how to write and call methods in controllers, and will provide specific code examples. First, we need to create a controller. You can use the Artisan command line tool to create

"Development Suggestions: How to Use the ThinkPHP Framework to Implement Asynchronous Tasks" With the rapid development of Internet technology, Web applications have increasingly higher requirements for handling a large number of concurrent requests and complex business logic. In order to improve system performance and user experience, developers often consider using asynchronous tasks to perform some time-consuming operations, such as sending emails, processing file uploads, generating reports, etc. In the field of PHP, the ThinkPHP framework, as a popular development framework, provides some convenient ways to implement asynchronous tasks.

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

ThinkPHP is a high-performance PHP framework with advantages such as caching mechanism, code optimization, parallel processing and database optimization. Official performance tests show that it can handle more than 10,000 requests per second and is widely used in large-scale websites and enterprise systems such as JD.com and Ctrip in actual applications.
