PHP Operators Flashcards
1
Q
types of operators
A
unary
binary
ternary
comparison
concatenation
arithmetic
autoincrement (++)
casting (bool $foo = true;)
assignment
2
Q
Which comparison operator is for testing if something is NOT EQUAL?
A
!=
3
Q
What comparison operator is for testing if something is IDENTICAL?
A
===
4
Q
A