(PCC)::[How-to-use-PHP-NULL-value-and-its-operations-in-php]::[php]
<!DOCTYPE html> <html> <body> <?php $x = "Hello world!"; $x = null; var_dump($x); ?> </body> </html>