Home>Article>Backend Development> PHP Operator (1) "Arithmetic Operator" Example Explanation

PHP Operator (1) "Arithmetic Operator" Example Explanation

Lisa Kudrow
Lisa Kudrow Original
2017-04-24 14:57:47 2954browse

What are php arithmetic operators?

IntroductionArithmetic operatorsBefore, let’s take a look at what operators are. Operators are used to perform program code operations and are commonly used to operate on variables, constants or data. The notation for a calculation, which is a specified operation performed on a value or set of values. PHP operators: arithmetic operators, string operators, assignment operators, bitwise operators, logical operators, comparison operators, increment or decrement operators, error control operators. We will explain them to you separately later. Let's first explain the arithmetic operators in PHP operators.

Introduction to various symbols of arithmetic operators:

Arithmetic operators are symbols that handle arithmetic operations. The most commonly used arithmetic operators are used in number processing. The commonly used arithmetic operators are as follows:

## With with with with with with #Additional operations Subtraction operation $a-$b Multiplication operation $a*$b Division operation $a/$b % Remainder operation $a%$b #Increment operation $a++,++$a ## $a--,--$a
$a+$b
*
/

PS: Use % in the arithmetic operator to find the remainder. If the dividend ($a) is a negative number, the result obtained is also a negative value.

What I want to talk about here are the last two increment/decrement operators, which mainly operate on a single variable.

There are two ways to use the increment/decrement operator:

The first one: first increase or decrease the variable by 1, and then assign the value to the original variable. , called the prefixed increment/decrement operator.

The second type is to put the operator after the variable, first return the current value of the variable, and then increase or decrease the current value of the variable by one. We call it the postincrement/decrement operator

Arithmetic operator usage examples

The following examples use several operators in the above table to perform calculations. The code is as follows:

\n"; echo $a-$b."
\n"; echo $a*$b."
\n"; echo $a/$b."
\n"; echo $a%$c."
\n"; $a++; echo $a."
\n"; ++$a; echo $a."
\n"; $c--; echo $c; ?>

The running result is as shown below

PHP Operator (1) Arithmetic Operator Example Explanation

The above example is our simple application of arithmetic operators. For more information, please refer to thephp operator topic. In the next section, we will introduce the concept and usage ofstring operators in detail.

Recommended related video tutorials:

"php.cn Dugu Jiujian (4)-php video tutorial":Operator (1) :Arithmetic operators, string operators, assignment operators

The above is the detailed content of PHP Operator (1) "Arithmetic Operator" Example Explanation. 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