ThinkPHP is a PHP open source framework based on MVC architecture. There are many ways to pass parameters. Here are some commonly used methods.
- Passing parameters in GET method
The parameters passed in the page address bar are obtained through the $_GET global variable.
For example: http://localhost/index.php/Home/Index/index?id=1
It can be obtained in the controller like this: $id = $_GET[ 'id'];
- POST parameter transmission
During the form submission process, data is obtained through the $_POST global variable.
For example: there is an input box in the form whose name attribute is age. It can be obtained in the controller like this: $age = $_POST['age'];
- URL address passing parameters
For example: Generate route in the controller:
$url = url('index/details', ['id' => 1] );
Access in routing:
public function details($id)
{
echo $id;
}
- passed in SESSION mode Parameters
For example: Assign a value in a page: session('username', 'tom');
Can be obtained in the controller like this: $username = session(' username');
- Pass parameters via COOKIES
For example: assign a value in a page: cookie('username', 'tom', 3600);
It can be obtained in the controller like this: $username = cookie('username');
- REQUEST way to pass parameters
This is a more flexible way method, it supports both GET and POST methods.
For example: $id = request()->param('id');
Summary
These are relatively common methods of passing parameters, allowing developers to More flexible and convenient use in projects. In project development, we need to flexibly choose the appropriate way to transfer parameters based on the actual situation.
The above is the detailed content of How to pass parameters in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

This article compares Lenovo's ThinkBook and ThinkPad laptop lines. ThinkPads prioritize durability and performance for professionals, while ThinkBooks offer a stylish, affordable option for everyday use. The key differences lie in build quality, p

This article demonstrates building command-line applications (CLIs) using ThinkPHP's CLI capabilities. It emphasizes best practices like modular design, dependency injection, and robust error handling, while highlighting common pitfalls such as insu

This article explains how to prevent SQL injection in ThinkPHP applications. It emphasizes using parameterized queries via ThinkPHP's query builder, avoiding direct SQL concatenation, and implementing robust input validation & sanitization. Ad

This article addresses ThinkPHP vulnerabilities, emphasizing patching, prevention, and monitoring. It details handling specific vulnerabilities via updates, security patches, and code remediation. Proactive measures like secure configuration, input

This article details ThinkPHP software installation, covering steps like downloading, extraction, database configuration, and permission verification. It addresses system requirements (PHP version, web server, database, extensions), common installat

The article discusses key considerations for using ThinkPHP in serverless architectures, focusing on performance optimization, stateless design, and security. It highlights benefits like cost efficiency and scalability, but also addresses challenges

This article introduces ThinkPHP, a free, open-source PHP framework. It details ThinkPHP's MVC architecture, features (routing, database interaction), advantages (rapid development, ease of use), and disadvantages (potential over-engineering, commun

This tutorial addresses common ThinkPHP vulnerabilities. It emphasizes regular updates, security scanners (RIPS, SonarQube, Snyk), manual code review, and penetration testing for identification and remediation. Preventative measures include secure


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
