forked from FlippAcademy/StarGamesControlPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.php
executable file
·41 lines (37 loc) · 1.57 KB
/
memory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
// =========================================================================
// ______
// / __/ /____ ________ ____ ___ _ ___ ___
// _\ \/ __/ _ `/ __/ _ `/ _ `/ ' \/ -_|_-<
// /___/\__/\_,_/_/ \_, /\_,_/_/_/_/\__/___/
// _____ /___/ __ ___ __
// / ___/__ ___ / /________ / / / _ \___ ____ ___ / /
// / /__/ _ \/ _ \/ __/ __/ _ \/ / / ___/ _ `/ _ \/ -_) /
// \___/\___/_//_/\__/_/ \___/_/ /_/ \_,_/_//_/\__/_/
// =========================================================================
// Copyright (c) Stargames Control Panel - Licensed under GNU GPL.
// See LICENSE File
// =========================================================================
// Project Lead by: Mysterious
// =========================================================================
-->
<?php
$php_version = phpversion();
error_reporting(E_ALL ^ E_NOTICE);
include_once "function/lib_memory.php";
// remove quotes added by php
if (get_magic_quotes_gpc()) {
CP_arrayWalkRecursive($_GET, 'stripslashes', true);
CP_arrayWalkRecursive($_POST, 'stripslashes', true);
CP_arrayWalkRecursive($_COOKIE, 'stripslashes', true);
CP_arrayWalkRecursive($_REQUEST, 'stripslashes', true);
}
include_once "config/config.php";
include_once "extract.inc.php";
include_once "function/function.php";
include_once "function/job_class.php";
include_once "function/cp.php";
include_once "lang.php";
$CP['ip_address'] = get_ip();
$CP['time'] = time();
?>