Future all-memory impossible cleanup

This commit is contained in:
Shoghi Cervantes Pueyo
2012-12-26 02:59:30 +01:00
parent ed42ba5176
commit 46ded9e675
2 changed files with 33 additions and 0 deletions

View File

@ -26,6 +26,29 @@ the Free Software Foundation, either version 3 of the License, or
*/
function hard_unset(&$var){
if(is_object($var)){
$unset = new ReflectionClass($var);
foreach($unset->getProperties() as $prop){
$prop->setAccessible(true);
@hard_unset($prop->getValue($var));
$prop->setValue($var, null);
}
$var = null;
unset($var);
}elseif(is_array($var)){
foreach($var as $i => $v){
hard_unset($var[$i]);
}
$var = null;
unset($var);
}else{
$var = null;
unset($var);
}
}
function parseNBTData($data){
$x = array();
if(isset($data["value"])){