if you don't want the if condition to do anything if it's true, then just don't use it.
if (!$var) die("Not Defined");
or if you insist on having it but doing nothing, put nothing in it:
if ($var) {
// I do nothing, what's the point in living??
} else {
die("Not Defined");
}