PART 17. PHP if condition Conditional statements are used to perform different actions based on different conditions. Very often when you write code, you want to perform different actions for ...
PART 16. PHP String Operators There are two string operators. The first is the concatenation operator ('.'), which returns the concatenation of its right and left arguments. The second is ...
In today's video, I will teach about PHP Logical Operators The PHP logical operators are used to combine conditional statements. SEE ALL VIDEOS ON THIS LINK t.ly/or7W source
PART 13. PHP Incrementing/Decrementing Operators PHP supports C-style pre- and post-increment and decrement operators. HINT: The increment/decrement operators only affect numbers and strings. Arrays, objects, booleans and resources are not ...
PART 12. PHP Operators - Identical Comparison Operator (===) The comparison operator called as the Identical operator is the triple equal sign “===”. This operator allows for a much stricter ...
PHP Comparison Operators The PHP comparison operators, as their name implies, allow you to compare two values. They help us make decisions in a program. In this video, I will ...
The basic assignment operator is "=". Your first inclination might be to think of this as "equal to". Don't. It really means that the left operand gets set to the ...
PART 9. PHP Arithmetic Operators Remember basic arithmetic from school? These work just like those. Arithmetic Operators Examples +$a Identity Conversion of $a to int or float as appropriate. -$a ...