<?php // very slow $total = @$x; // looks weird $total = $x ?? null; // lengthy if (!isset($x)) { $total = null; } else { $total = $x; } ?>
You have javascript disabled. You will not be able to edit any code.