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

@ -23,7 +23,17 @@ while(true){
if($server->start() !== true){
break;
}else{
console("[INFO] Cleaning up...");
hard_unset($server);
$excludeList = array("GLOBALS", "_FILES", "_COOKIE", "_POST", "_GET", "excludeList");
foreach(get_defined_vars() as $key => $value){
if(!in_array($key, $excludeList)){
$$key = null;
unset($$key);
}
}
$server = null;
unset($server);
console("[NOTICE] The server is restarting... (".gc_collect_cycles()." cycles collected)", true, true, 0);
}
}