$a = 5; // Integer $b = 5.34; // Float $c = "hello"; // String $d = true; // Boolean $e = NULL; // NULL $a = (unset) $a; $b = (unset) $b; $c = (unset) $c; $d = (unset) $d; $e = (unset) $e;