国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
First introduction to ThinkPHP controller, first introduction to thinkphp
Articles you may be interested in:
Home Backend Development PHP Tutorial First introduction to ThinkPHP controller, first introduction to thinkphp_PHP tutorial

First introduction to ThinkPHP controller, first introduction to thinkphp_PHP tutorial

Jul 12, 2016 am 08:54 AM
thinkphp controller

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:

<&#63;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:

<&#63;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:

<&#63;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 '執(zhí)行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 '執(zhí)行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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1119987.htmlTechArticleFirst introduction to ThinkPHP controller, first introduction to thinkphp. This article focuses on the definition and basic operation content of ThinkPHP controller. I hope you can have a preliminary understanding of the ThinkPHP controller. The most basic...
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

Undress AI Tool

Undress AI Tool

Undress images for free

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.

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)

Hot Topics

PHP Tutorial
1502
276
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.

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 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.

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.

How to install thinkphp How to install thinkphp Apr 09, 2024 pm 05:42 PM

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.

How is the performance of thinkphp? How is the performance of thinkphp? Apr 09, 2024 pm 05:24 PM

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.

Learning Laravel from scratch: Detailed explanation of controller method invocation Learning Laravel from scratch: Detailed explanation of controller method invocation Mar 10, 2024 pm 05:03 PM

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 for API development Development suggestions: How to use the ThinkPHP framework for API development Nov 22, 2023 pm 05:18 PM

Development suggestions: How to use the ThinkPHP framework for API development. With the continuous development of the Internet, the importance of API (Application Programming Interface) has become increasingly prominent. API is a bridge for communication between different applications. It can realize data sharing, function calling and other operations, and provides developers with a relatively simple and fast development method. As an excellent PHP development framework, the ThinkPHP framework is efficient, scalable and easy to use.

See all articles