$a--

Return and decrement

Return $a, then decrement by one.

Tags
$a = 1;

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

 1.0+

null coalescing