classMattCore_SourceimplementsMattCore{private$executionTime;function__construct(){$this->executionTime=microtime(true);$_GET=self::set_GPC_quotes($_GET);$_POST=self::set_GPC_quotes($_POST);$_COOKIE=self::set_GPC_quotes($_COOKIE);}publicfunctionset_GPC_quotes($data){if(!get_magic_quotes_gpc()){if(is_array($data)){foreach($dataas$key=>$value){$data[$key]=self::set_GPC_quotes($value);}}else{$data=addslashes($data);}}return$data;}publicfunctionrunTime(){returnnumber_format((microtime(true)-$this->executionTime),5);}}