Home Backend Development PHP Tutorial Getting started with photoshop and learning PHP expressions

Getting started with photoshop and learning PHP expressions

Jul 29, 2016 am 08:33 AM

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; } If you think that writing $c = foo() is actually the same as writing $c = 5, you are right. A function is an expression whose value is its return value. Because foo() returns 5, the expression 'foo()' evaluates to 5 . ​
The value of PHP is of course not limited to shaping, and usually it is not. 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 evaluation of an expression is addition first, then addition and first subtraction, then subtraction. 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, first calculate the value of the original variable $variable, and then perform self-adding (PHP does self-adding after reading the value of the variable, so it is called 'post-adding').
The most common expression is the 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), < (less than) and <= (less than or equal to). This kind of expression is usually used in conditional execution, such as IF statement. ​
​ 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 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.

The above introduces the PHP expressions for introductory learning of photoshop and PHP learning, including the content of introductory learning of photoshop. I hope it will be helpful to friends who are interested in PHP tutorials.

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles