$a++

Return and increment

Return $a, then increment by one.

Tags
$a = 1;

$b = $a++; // $a = 2, $b = 1

 1.0+

null coalescing