PHP Numbers Flashcards
1
Q
Secuencia de orden de operadores aritmeticos en PHP
A
Any operation wrapped in parentheses (())
Exponents (**)
Multiplication (*) and division (/)
Addition (+) and subtraction (-).
2
Q
Short syntax de operaciones
A
$x += $y $x -= $y $x *= $y $x /= $y $x %= $y