function a ($fruit, $vegetable) { if (!$fruit) { return; } # Guard clause if ($vegetable) { print "Fruit and Vege"; } else { print "Just the fruit ma'am"; } }