This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP NULL Value

NULL

<?php
// var_dump() function returns the data type and value:
$x = "Hello world!";
$x = null;
var_dump($x);
?>