Talk about PHP syntax (2)_PHP tutorial
Author: Hua Honglang
The previous article "Talk about PHP syntax" has already talked about PHP data types and expressions. Now, let’s take a look at PHP variables and constants.
Let’s look at an example first.
File: test.php
//This is a single-line comment method
#This is another single-line comment method
/*This is a multi-line comment method Comment method
Let’s take a look at the example below*/
funtion display($file,$line)
{
global $message;
echo "FILE:$file
echo "LINE:$line
";
echo "Message:$message
";
}
$message="This is a routine . ";
display(_FILE_,_LINE_);
?>
The displayed result is:
text.php
15
This is a routine
In the above example, function defines a custom function. The next two variables $file and $line are two local variables. They only work in the function body and do not interfere with the variables outside the function. If there is $file or $line outside the function, , the values of two $files and two $lines are not necessarily the same. _FILE_ and _LINE_ are two constants, and their values have already been determined. _FILE_ is the file name of this file, _LINE_ is the line number of the execution line. There is another sentence in the function body: global $message; Its function is to enable the global variable $message to be applied to the function body. This sentence can also be written as $GLOBAL["message"];
For GET, POST and PHP will automatically treat the information generated by mechanisms such as cookies as PHP variables. In this way, the information processing of submitting the form is particularly easy. As follows:
File: form.html
File: deal.php
echo "Your username For: $uname";
?>
The above program will ask the user to enter a username. After submitting the form, the username confirmation message will be returned. It can be seen that uname in the form has become the $uname variable in the deal.php program. Keep it simple. :-)
Let’s take a look at the basic flow control of PHP:
if…else…Elseif
Grammar 1:
if (condition) {
Statement body
}
Grammar Two:
if (condition) {
Statement body one
}else{
Statement body two
}
Grammar three:
if (condition 1) {
Statement body one
}elseif (condition 2) {
Statement body two
}else{
Statement body three
}
We change the above deal.php program to:
if ($uname=="Xiao Ming") {
echo "I'm so happy to see you, Xiao Ming.";
}elseif ($uname=="Xiaohua") {
echo "Oh, it's Xiaohua.";
}else{
echo "You are $uname, right";
}
?>
except if In addition to the statement, there is a while loop, whose syntax is as follows:
while(condition){
statement body
}
When the condition is true, the statement body is executed. The syntax of
do...while is as follows:
do {
Statement body
}while (condition)
Execute the statement body once first. If the condition is true, the statement body will be executed again in a loop.
The syntax of the for loop is the same as C, as follows:
for (initial condition; judgment condition; condition change) {statement}
And break jumps out of the executing loop, and continue is to interrupt this loop.
Okay, that’s it for this article. I believe you will be able to get started with the above basics very quickly.
--(to be continued)--

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



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

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

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

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

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,

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

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
