search
HomeBackend DevelopmentPHP TutorialOperators in PHP and PHP knowledge base

Operators in PHP and PHP knowledge base

Jun 23, 2017 pm 01:19 PM
phpgetting StartedBaseEssential

Preface

In the previous chapter, we had a preliminary understanding of the web page basics of PHP and the entry-level basics of PHP. Today we will continue to share more information with you. Knowledge of PHP.

Theoretical knowledge may seem boring, but our practice (coding) is inseparable from it after all.

Only by combining theory with practice, more functions can be achieved with the least amount of code.

***Keywords in this chapter: Operator; variable variable; addressing symbol; branch and Loop; Flow control statement goto.

Now, let’s take a look at # in PHP ##Operators and more PHP knowledge base

Operator

1. Arithmetic operators: + - * / % ++ --


2. Assignment operator: = += -= *= /= %= .= (connection string)


3. Comparison operators: > = ,! =! ==


==: Requires equal values, but does not require equal data types


===: Requires Values ​​and data types must be equal


!=: Only values ​​are compared, and equal values ​​are false


!= =: Compare values ​​and types. If both values ​​and types are equal, false


4. Logical operators: and/&& or/|| not/ ! When xor

##&& and || are operated, a short circuit will occur:

When the result can be judged on the left side, it will no longer be executed. Right! ! (When the left side of && is false, the result is false; when the left side of || is true, the result is true)

xor: Logical XOR. If only one of the two sides is correct, the result is true; if both sides are true or both are false, the result is false.

5. Bit operators:

Convert decimal to binary and then perform operations.

&: Bitwise AND, after converting to binary, both are 1, and the result is 1
|: Bitwise OR, after converting to binary, one is 1 1, is 1
^: Bitwise XOR, after converting to binary, if the two are not the same, they are 1; if both are 1, or both are 0, the result will be 0.
~: Bitwise inversion, after converting to binary number, all digits are inverted. 1--->0 0--->1

num
>>: Right shift: After converting to binary, right Shift a few bits and fill the remaining digits on the left with 0s.
num >> n is equivalent to num/2^n (※※※)

6. Other operators:
Expression 1?Expression 2:Expression 3:
If expression 1 is true, execute expression 2, otherwise execute expression 3
`` : Call the command line in the system DOS environment and execute it. However, due to security and cross-platform nature, we do not support the use; eg:`ipconfig`
@: Error message control character: some small error messages can be temporarily blocked. But its use is not recommended!

Variable variable

In front of a variable name, add a $ symbol. You can use the value of the first variable as the name of the new variable.

$hello = "hello1";
$$hello = "world";//$hello1
$$$hello = "Jredu";//$world

##三Address symbol


&: Adding & before the variable name can take out the address of the variable in memory and assign it to another variable.
$num2 = &$num1;//Take out the address of num1 and give it to num2, which is equivalent to the reference data type we are talking about. The values ​​of num2 and num1 will change simultaneously.

Branch and loop

1. Judgment conditions in if
For details, please click "Click me if you are curious!"The second part of the previous chapter [Basics of PHP entry], Here, the blogger will not introduce them one by one...

2. elseif
#In PHP, elseif statements can be written consecutively , or can be separated by spaces;

For example:
else if() √
elseif() √

3. switch
In PHP, when judging the switch structure, use == instead of ===
In PHP, continue can be used in the switch structure and has the same effect as break.
In php, continue and break can be followed by numbers, indicating how many levels of loops to skip or switch;
eg:break 3; means terminating the 3-level loop

4. Do-while loop
A semicolon must be added at the end of the do-while loop.
do{

}while();

5. Process control Statement

1. break: Terminate the loop of this level; break can be followed by a number to indicate how many levels of loops to terminate. break 3, terminate the 3-level loop.
2. continue: skip this loop; continue can also be followed by a number to indicate how many levels of loops to skip
3. return: terminate the current function and Return value (if any), but it is generally only used in functions. It is not recommended to use return in scripts;
4. exit(mixed conclusion)/die(mixed conclusion) function: end directly Current PHP script! !
If there are parameters passed in, the closing statement will be printed first, and then the current script will end.

##五Flow control statement goto

##1. Usage:

Define a jump anchor point, "identifier"-->"jr:"

Set a goto statement at any position and jump to the specified anchor point: "goto jr;"

2. Function:
When encountering a goto statement, jump directly to the set identifier position.


3. Used to implement branches.
Note: The goto statement only allows the current program control flow to jump to the specified anchor point, but is not responsible for executing several lines of code.
That is, all codes from the anchor point downwards will be executed in sequence. If multiple branches are implemented, goto statements must be used to skip other branches. (See the case below for details)


4. Goto implementation loop:

See the case for details. However, in goto, break cannot be used to break out of a loop.


5. Advantages and disadvantages of goto statement:
① Advantages: Flexible and convenient to use, instruction-level statements, faster efficiency, better performance .
② Disadvantages: The extensive use of goto is a disaster for the structuring of the code.
It is not conducive to a clear code structure and understanding of the code, and it is very likely to skip some important declaration statements, resulting in code errors.

Theory is not as good as practice. For details, see the code below↓↓↓

 1 //goto语句实现分支 2    /*$num = true; 3    if(!$num){ 4        goto jh; 5    }else{ 6        goto jr; 7    } 8     9    jr:10    echo "3333333333333<br>";11    echo "4444444444444<br>";12    goto jj;13    14    jh:15    echo "5555555555555<br>";16    echo "6666666666666<br>";17    18    jj:*/19    20    //[1]goto循环21    $num = 0;22    jr:23    echo "1222222222221<br>";24    $num ++;25    if($num";37     $num++;38     if($num

The above is what I want to share with you today. I hope it will be helpful to you~

The blogger reminds everyone again that theoretical knowledge is the basis for good code and cannot be ignored. ! [Basic Introduction to PHP] will continue to be updated, thank you for your attention~~~

The above is the detailed content of Operators in PHP and PHP knowledge base. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools