Hyvor Developer
  Home   Download   Copy
Code
<?php
$var = null;
var_dump($var);

// unsetting variables with null
$text = 'Hello World';
$text = null; // now $text does not hold any value
var_dump($text);
Result