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
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)
5. Bit operators:
&: Bitwise AND, after converting to binary, both are 1, and the result is 1 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. 1. Judgment conditions in if 2. elseif For example: 3. switch 4. Do-while loop 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. 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: See the case for details. However, in goto, break cannot be used to break out of a loop. Theory is not as good as practice. For details, see the code below↓↓↓ 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~~~
|: 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
$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
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...
#In PHP, elseif statements can be written consecutively , or can be separated by spaces;
else if() √
elseif() √
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
A semicolon must be added at the end of the do-while loop.
do{
}while();
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:
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:
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. 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 the detailed content of Operators in PHP and PHP knowledge base. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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.


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

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
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version
Useful JavaScript development tools