Difference between NULL and null in PHP
Solution 1:
Null is case insensitive.
From the documentation:
There is only one value of type null, and that is the case-insensitive keyword NULL.
Solution 2:
There is no difference. Same type just its a case insensitive keyword. Same as True
/False
etc...