Home Backend Development PHP Tutorial PHP Query String Tips Sharing_PHP Tutorial

PHP Query String Tips Sharing_PHP Tutorial

Jul 15, 2016 pm 01:35 PM
php transfer share variable commonplace string Skill yes Inquire of programmer

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:

  1. /* assume we want to pass this
    variables */
  2. $city_name = " new york"; >3456
  3. ; $paid = >1
  4. ; $ query_string = "city={$city_name} &id={$invoice_id}&paid={$paid}"
  5. ; $url
    =
    "http://www.example.com?"
  6. . $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>
Copy after login

(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>
Copy after login
You can also pass in a complex array:

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>
Copy after login

http://www.bkjia.com/PHPjc/445934.html

www.bkjia.com

true

http: //www.bkjia.com/PHPjc/445934.html

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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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 Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

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.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

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

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

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

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

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,

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

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

See all articles