PHP Operators
This page teaches you about PHP operators.
Operators are used to perform a function on data.| Operator | Description | Type |
| + | Addition | Arithmetic |
| - | Subtraction | Arithmetic |
| * | Multiplication | Arithmetic |
| / | Division | Arithmetic |
| ++ | Increment | Arithmetic |
| -- | Decrease | Arithmetic |
| == | Equal to | Comparison |
| != | Not equal to | Comparison |
| < | Less than | Comparison |
| > | Greater than | Comparison |
| <= | Less than or equal to | Comparison |
| >= | Greater than or equal to | Comparison |
| && | And | Logical |
| || | Or | Logical |
| ! | Not | Logical |
Bookmark this page: |








