代码示例:(标识:demo_php_datatypes_null)
<!DOCTYPE html>
<html>
<body>

<?php
$x="Hello world!";
$x=null;
var_dump($x);
?>

</body>
</html>
运行结果: