<?php assert((!empty(0) ? 0 : 5) === 5); assert((0 ?? 5) === 0); // isset() is by-reference, so needs a variable. $x = 0; assert((isset($x) ? $x : 5) === 0);
You have javascript disabled. You will not be able to edit any code.