4 lines
52 B
PHP
4 lines
52 B
PHP
|
|
$x = NULL;
|
||
|
|
if (is_null($x))
|
||
|
|
echo "\$x is null\n";
|