Problem Description
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?
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?