bkilshaw
function doTheThing($isDirectory = null) {
if($isDirectory != null) {
if($isDirectory) {
echo "value is not null and truthy\r";
} else {
echo "value is not null and falsey\r";
}
} else {
echo "value is null\r";
}
}
doTheThing();
doTheThing(true);
doTheThing(false);
value is null
value is not null and truthy
value is null
=> null