Operators are the symbols used for operation to manipulate values and variables. In General
There are three types of operators in PHP:
- Unary Operators
- Binary Operators
- Ternary Operators
You Might Also Like:
- Assignment Operators Assignment operators is used for writing values to the variables. Here the first operand must be a variable. The value of assignment operator is the...
- PHP: Operators: Binary Operators Binary operators are used on two operands. Numeric Operators: All binary operators work on numeric operands excluding concatenation operator: Operator, Name Value and Operands: +...
- Using Operators Arithmetic Operators: The arithmetic operators are used for performing arithmetic operations. Division / Multiplication * Addition + Subtraction - Modulus % For example: 9/3:...
- PHP: Variables: Super Globals PHP don’t support global variables. Some of internal variables behave like global variables, they are known as super global variables. Super global variables are predefined...
- PHP: DATA TYPES There are 8 data types in PHP out of which 5 are scalar. Variables hold the values of these data types. Variables react according to...
- PHP: Variables PHP variable are different from compiled languages. PHP variables are preceded with $sign. Example: $AB=7.7; Some rules for declaring PHP variable: Always starts with $...
- PHP: Data Types: Constants Instead of using assignment operators like we do while declaring variables, constants are defined by define() function. Constants don’t use any $ sign like variables...
- TechCrunch Style Lazy Load Social Media Sharing Buttons For Your WordPress Site TechCrunch uses Socialite.js script can for displaying social media sharing buttons with lazy loading feature. Lazy load simply means that the real js sharing buttons...



