-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathData.php
102 lines (85 loc) · 2.95 KB
/
Data.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php namespace DebugTool;
use CodeIgniter\CLI\CLI;
use Config\Database;
use Config\Services;
/**
* Created by PhpStorm.
* User: martin
* Date: 12/11/2018
* Time: 13.34
*/
class Data {
private static $store = [
'status' => null
];
public static function set($key, $value) {
Data::$store[$key] = $value;
}
public static function del($key) {
unset(Data::$store[$key]);
}
public static function getStore() {
return Data::$store;
}
public static function get($key) {
return isset(Data::$store[$key]) ? Data::$store[$key] : null;
}
public static function getDebugger() {
return isset(self::$store['debug']) ? self::$store['debug'] : [];
}
public static function lastQuery($return = false) {
return Data::sql(Database::connect()->showLastQuery(), $return);
}
public static function sql($sql, $return = false) {
$sql = str_replace("\n", " ", str_replace("\t", " ", $sql));
if($return)
return $sql;
else
Data::debug($sql);
}
public static function debug($info = 'test') {
$func_args = func_get_args();
if(count($func_args) > 1) $info = implode(' ', $func_args);
if(!isset(Data::$store['debug'])) Data::$store['debug'] = array();
$time = explode(" ",microtime());
$time = date("H:i:s", $time[1]).substr((string)$time[0],1,4);
if(is_object($info) && method_exists($info, 'count') && method_exists($info, 'allToArray') && $info->count())
$debug = [
$time => $info->allToArray()
];
else if(is_object($info) && method_exists($info, 'toArray'))
$debug = [
$time => $info->toArray()
];
else if(is_object($info))
$debug = [
$time => $info
];
else if(is_array($info))
$debug = [
$time => $info
];
else
$debug = "$time: $info";
if(Services::request()->isCLI())
CLI::print(is_array($debug) ? json_encode($debug, JSON_PRETTY_PRINT) : $debug."\n");
Data::$store['debug'][] = $debug;
}
public static function memory($append = '') {
$memory_limit = ini_get('memory_limit');
if(preg_match('/^(\d+)(.)$/', $memory_limit, $matches)) {
if($matches[2] == 'M') {
$memory_limit = $matches[1] * 1024 * 1024; // nnnM -> nnn MB
} else if($matches[2] == 'K') {
$memory_limit = $matches[1] * 1024; // nnnK -> nnn KB
}
}
$memory_limit = $memory_limit / 1024 / 1024;
$memory_limit = round($memory_limit, 0);
$mem = memory_get_usage(true);
$mem = $mem / 1024 / 1024;
$mem = round($mem, 4);
$mb = $mem . 'mb of ' . $memory_limit . 'mb';
Data::debug($mb . ' (' . round(100 / $memory_limit * $mem, 0) . '%)', $append);
}
}