destroy php variable

PHP
<?php

$first = 100;
$second = 200;

$third = $first + $second;
echo "Sum = ".$third;
// Destroy a variable with unset function
unset($third);

//after delete the variable call it again to test
echo "Sum = ".$third;
?>// Destroy a variable
<?php
unset ($var1, $var2.... )
?>
Source

Also in PHP: