xxxxxxxxxx
// below is assign if null
$final_output = $check_null ?: $default_value;
// assign if not null
$final_output = !($check_null) ?: $default_value;
`Edit`
?: is tenary operator a.k.a one-line if expression
syntax: <if expression null> ?: <do this>
xxxxxxxxxx
if ($variable !== null) {
// Variable is not null, perform necessary operations
} else {
// Variable is null, handle the null case
}
xxxxxxxxxx
$variable = null;
if (isset($variable)) {
echo "Variable is not null";
} else {
echo "Variable is null";
}