Operator Precedence In PHP
The precedence of an operator specifies how “tightly” it binds two expressions together. For example, in the expression 1 + 5 * 3, the answer is 16 and not 18 because the multiplication (“*”) operator has higher precedence than the addition (“+”) operator. ***Parentheses may be used to force precedence, if necessary. For instance: (1 […]
How To Check String In Switch Case
Switch Case In PHP: A small code example
#Another code example: #Another code example:
PHP Ternary Operator & Nested Ternary Operator
Difference Between printf & sprintf
Printf print something directly Sprintf place it into a variable first