--$a

Decrement and return

Decrement $a by one, then return it.

Tags
$a = 1;

$b = --$a; // $a = 0, $b = 0

 1.0+

null coalescing