Mega Code Archive

 
Categories / Php / Data Type
 

Using the unset() Function

<?php     $myvar = "This is a string";     unset($myvar);        // Destroy the variable ?>