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 (-).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Short syntax de operaciones

A
$x += $y
$x -= $y
$x *= $y
$x /= $y
$x %= $y
How well did you know this?
1
Not at all
2
3
4
5
Perfectly