I have a question regarding NULL
in PHP:
$a="";
if($a == NULL) {
echo 'is null';
}
Why do I see is null when $a
is an empty string? Is that a bug?
I have a question regarding NULL
in PHP:
$a="";
if($a == NULL) {
echo 'is null';
}
Why do I see is null when $a
is an empty string? Is that a bug?