PHP Query String Tips Sharing_PHP Tutorial
For an experienced
RL passing variables is a common thing for programmers, and many people will think that this article is nothing new. We call the method of passing variables through URL the GET method, and the other method is the POST method. Both methods are very easy to implement in PHP. For example, suppose you are preparing to perform a database query and need to pass three variables through GET: city, id and paid.
The traditional PHP query string method is to construct the query string like the following example:
- /* assume we want to pass this
variables */ - $city_name = " new york"; >3456
- ; $paid = >1
- ; $ query_string = "city={$city_name} &id={$invoice_id}&paid={$paid}"
-
; $url
= "http://www.example.com?" - . $query_string; Most PHP developers are now accustomed to the above method. It has no problem when there are only three or four variables, but if you add more variables, the code will become difficult to understand and maintain, and it is easy to introduce subtle errors. The best way to pass GET variables is through the http_build_query function introduced in PHP5. It receives an array parameter and returns a properly formatted, URL-encoded string, which can be directly spliced in in url. Below is the corresponding PHP query string example.
In the above PHP query string example, the array contains the variable name and variable value. You can also pass in an array containing only variable values, and the function will construct the variable name using the variable name you provide (passed in through the second parameter of the function via
) plus the index value of the array. For example, if you want to pass six city names, you can do as follows.
The generated url is as follows: http://www.example.php/?city0=paris&city1=new+york&city2=florence&city3=london&city4=berlin&city5 =delhi<ol class="dp-xml"> <li class="alt"><span><span>$</span><span class="attribute">city_name</span><span> = </span><span class="attribute-value">"new york"</span><span>; </span></span></li> <li> <span>$</span><span class="attribute">invoice_id</span><span> = </span><span class="attribute-value">3456</span><span>; </span> </li> <li class="alt"> <span>$</span><span class="attribute">paid</span><span> = </span><span class="attribute-value">1</span><span>; </span> </li> <li> <span>$</span><span class="attribute">fields</span><span> = </span><span class="attribute-value">array</span><span>('city' =</span><span class="tag">></span><span> <br>$city_name, </span> </li> <li class="alt"> <span>'id' =</span><span class="tag">></span><span> $invoice_id, </span> </li> <li> <span>'paid' =</span><span class="tag">></span><span> $paid); </span> </li> <li class="alt"> <span>$</span><span class="attribute">url</span><span> = </span><span class="attribute-value">"http://www.example.com?"</span><span> .<br> http_build_query($fields, '', "&"); </span> </li> </ol>
(Annotation: If the key of the array element is not the default integer, then key is used as the variable name of the corresponding value. As in the above example, the key of the array is the default integer, then
The variable name is the second parameter of the function plus the key of the element, so the first variable name is city0)
The third parameter of the PHP query string function is an optional parameter, indicating the delimiter of the variable , the default value is '&'. But I prefer to pass in the '&' separator explicitly.
<ol class="dp-xml"> <li class="alt"><span><span>$</span><span class="attribute">fields</span><span> = </span><span class="attribute-value">array</span><span>('paris', </span></span></li> <li><span>'new york', </span></li> <li class="alt"><span>'florence', </span></li> <li><span>'london', </span></li> <li class="alt"><span>'berlin', </span></li> <li><span>'delhi'); </span></li> <li class="alt"> <span>$</span><span class="attribute">url</span><span> = </span><span class="attribute-value">"http:/<br>/www.example.php?"</span><span> . </span> </li> <li><span>http_build_query($fields,<br> 'city', "&"); </span></li> </ol>
It will generate the following URL:
http ://www.example.com?city=new+york&id=3456&paid%5Bcurrency%5D=euro&paid%5Bamount%5D=345&paid%5Breceipt%
5D=fgf44545
In summary, http_build_query( ) can really simplify the construction of PHP query strings for GET.
<ol class="dp-xml"> <li class="alt"><span><span>$</span><span class="attribute">city_name</span><span> = </span><span class="attribute-value">"new york"</span><span>; </span></span></li> <li> <span>$</span><span class="attribute">invoice_id</span><span> = </span><span class="attribute-value">3456</span><span>; </span> </li> <li class="alt"> <span>$</span><span class="attribute">currency_name</span><span> = </span><span class="attribute-value">"euro"</span><span>; </span> </li> <li> <span>$</span><span class="attribute">total</span><span> = </span><span class="attribute-value">345</span><span>; </span> </li> <li class="alt"> <span>$</span><span class="attribute">receipt_no</span><span> = </span><span class="attribute-value">"fgf44545"</span><span>; </span> </li> <li><span> </span></li> <li class="alt"> <span>$</span><span class="attribute">fields</span><span> = </span><span class="attribute-value">array</span><span>('city' =</span><span class="tag">></span><span> <br>$city_name, </span> </li> <li> <span>'id' =</span><span class="tag">></span><span> $invoice_id, </span> </li> <li class="alt"> <span>'paid' =</span><span class="tag">></span><span> array('currency' =</span><span class="tag">><br></span><span> $currency_name, </span> </li> <li> <span>'amount' =</span><span class="tag">></span><span> $total, </span> </li> <li class="alt"> <span>'receipt' =</span><span class="tag">></span><span> $receipt_no) </span> </li> <li><span>); </span></li> <li class="alt"> <span>$</span><span class="attribute">url</span><span> = </span><span class="attribute-value">"http://www.example.php?"</span><span> . </span> </li> <li><span>http_build_query($fields, '', "&"); </span></li> </ol>
For an experienced RL programmer, passing variables is already commonplace, and many people will think that This article is nothing new. We call the method of passing variables through URL...

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

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



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op
