Computer Science, asked by shalludamathia12345, 1 month ago

16. Which of the following is not an
operator in PHP​

Answers

Answered by bhumikahatekar93
0

Explanation:

PHP Operators

❮ PreviousNext ❯

PHP Operators

Operators are used to perform operations on variables and values.

PHP divides the operators in the following groups:

Arithmetic operators

Assignment operators

Comparison operators

Increment/Decrement operators

Logical operators

String operators

Array operators

Conditional assignment operators

PHP Arithmetic Operators

The PHP arithmetic operators are used with numeric values to perform common arithmetical operations, such as addition, subtraction, multiplication etc.

Operator Name Example Result Show it

+ Addition $x + $y Sum of $x and $y Try it »

- Subtraction $x - $y Difference of $x and $y Try it »

* Multiplication $x * $y Product of $x and $y Try it »

/ Division $x / $y Quotient of $x and $y Try it »

% Modulus $x % $y Remainder of $x divided by $y Try it

Similar questions