search
HomeBackend DevelopmentPHP TutorialPHP Expressions for PHP Learning_PHP Tutorial

PHP Expressions for PHP Learning_PHP Tutorial

Jul 21, 2016 pm 04:04 PM
phpthingelementexiststudyyescompositionexpression

PHP expression

Expression is the most important element of PHP. In PHP 3.0, almost everything you write is an expression. The simplest but precise definition of an expression is "anything that has a value". A simple example is constants and variables.
When you write "$a = 5", you assign the value '5' to $a. (In this case, '5' is an integer constant). Here, you want to assign $a to 5. So when you write $b = $a, the desired result is $b = 5. That is, $a is an expression with a value of 5. A simple example of a complex expression is a function.
For example, consider the following function:   function foo()   {    return 5; A function is an expression whose value is its return value. Because foo() returns 5, the expression 'foo()' evaluates to 5 .
PHP’s values ​​are of course not limited to integers, and usually aren’t. PHP supports three types of values: integer values, floating point values ​​and string values. PHP supports two mixed types (non-scalar): arrays and objects. Values ​​of both types can be assigned to variables or returned from functions.
PHP 3 is an expression-oriented language, so almost everything is an expression.
Consider the example we have discussed, '$a = 5'. It's easy to see that there are two values ​​here, the value of the integer constant '5', and the value of the variable $a, which is also assigned to 5. But there is actually an additional value here, which is the value of the assignment statement itself.
The value of the assignment statement itself is the value being assigned, which is 5 in this case. In fact, it means that regardless of what '$a = 5' does, it is an expression with a value of 5. Thus, writing statements such as '$b = ($a = 5)' is like '$a = 5; $b = 5;' (with a semicolon at the end of each statement). Because the order of assignment is from right to left, you can also write '$b = $a = 5'. ​

Another good example of the direction of expression evaluation is add first, add last and subtract first, then subtract. Users of PHP/FI and most other languages ​​are probably familiar with variable++ and variable--. This is the self-increment and self-decrement operation. In PHP/FI 2, the statement '$a++' has no value (it is not an expression), so you can neither assign to it nor use it in any way. PHP 3 turns them into the same expressions as in C, thereby enhancing the capabilities of auto-increment and auto-subtraction operations.
Similar to C, there are two types of self-add in PHP 3 - add first and add last. The essence of adding first and adding later is that the variables add themselves, and they have the same effect on the variables themselves. The difference is the value of the self-increasing expression. Add first in the form of '++$variable', calculate the value after the variable is added (PHP first adds the variable, and then read its value, which is also called 'add first'). Add in the form of '$variable++' Post-adding, the value of the original variable $variable is calculated first, and then self-adding is performed (PHP does self-adding after reading the value of the variable, so it is called 'post-adding').
The most common expression is comparison expression. This expression evaluates to 0 or 1, which means FALSE or TRUE respectively.
PHP supports > (greater than), >= (greater than or equal to), == (equal to), The last expression we want to discuss here is the mixed assignment expression. You already know that if you want to increment $a, you can simply write '$a++' or '++$a'. But what if the value you want to increment is larger than 1, for example to make it increase by 3? You could write '$a++' a few more times, but this is obviously not an efficient or acceptable way. Another common approach is to write '$a = $a + 3'. First calculate the value of '$a + 3', and then assign it back to $a, so that $a is added to 3. In PHP 3, you can abbreviate it like you do in several other languages ​​(such as C), which makes it clearer, faster and easier to understand. Adding 3 to the current variable $a can be written as '$a += 3'. This sentence means "take the value of $a, add 3 to it, and assign it to $a". In addition to making the statement shorter and clearer, this also makes it execute faster. The value of the expression '$a += 3', like a strict assignment statement, is the assigned value. Note: It is not 3, but the value of $a plus 3 (this is what is assigned to $a). Any double operator can be used in this assignment mode, such as '$a -= 5' (variable $a minus 5), '$b *= 7' (variable $b multiplied by 7), etc. .
The last thing worth mentioning is the truth value of expressions. Many times (mainly in conditional execution and looping), you don't care about the specific value of an expression, but only whether it represents TRUE or FALSE (PHP does not have a dedicated Boolean type). PHP uses a perl-like method to calculate the truth value of an expression. Any non-zero value is TRUE, zero is FALSE. It is important to note that the value of negative zero is non-zero and is considered TRUE! The empty string can be FALSE; all other strings are TRUE. For non-quantitative values ​​(arrays and objects) - FALSE if its value does not contain any elements, TRUE otherwise.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315992.htmlTechArticlePHP expression Expression is the most important element of PHP. In PHP 3.0, almost everything you write is an expression. The simplest but precise definition of an expression is anything that has a value...
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
Beyond the Hype: Assessing PHP's Role TodayBeyond the Hype: Assessing PHP's Role TodayApr 12, 2025 am 12:17 AM

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

What are Weak References in PHP and when are they useful?What are Weak References in PHP and when are they useful?Apr 12, 2025 am 12:13 AM

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

Explain the __invoke magic method in PHP.Explain the __invoke magic method in PHP.Apr 12, 2025 am 12:07 AM

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

Explain Fibers in PHP 8.1 for concurrency.Explain Fibers in PHP 8.1 for concurrency.Apr 12, 2025 am 12:05 AM

Fibers was introduced in PHP8.1, improving concurrent processing capabilities. 1) Fibers is a lightweight concurrency model similar to coroutines. 2) They allow developers to manually control the execution flow of tasks and are suitable for handling I/O-intensive tasks. 3) Using Fibers can write more efficient and responsive code.

The PHP Community: Resources, Support, and DevelopmentThe PHP Community: Resources, Support, and DevelopmentApr 12, 2025 am 12:04 AM

The PHP community provides rich resources and support to help developers grow. 1) Resources include official documentation, tutorials, blogs and open source projects such as Laravel and Symfony. 2) Support can be obtained through StackOverflow, Reddit and Slack channels. 3) Development trends can be learned by following RFC. 4) Integration into the community can be achieved through active participation, contribution to code and learning sharing.

PHP vs. Python: Understanding the DifferencesPHP vs. Python: Understanding the DifferencesApr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP: Is It Dying or Simply Adapting?PHP: Is It Dying or Simply Adapting?Apr 11, 2025 am 12:13 AM

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

The Future of PHP: Adaptations and InnovationsThe Future of PHP: Adaptations and InnovationsApr 11, 2025 am 12:01 AM

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

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

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),