This repository was archived by the owner on Jan 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObj.php
More file actions
189 lines (168 loc) · 4.04 KB
/
Obj.php
File metadata and controls
189 lines (168 loc) · 4.04 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
namespace Modulus\Support;
use Modulus\Utility\Asset;
use Modulus\Utility\Variable;
use Modulus\Support\{DEPConfig,
DEPException};
class Obj
{
/**
* Get env
*
* @param mixed string
* @param mixed $fallback
* @return mixed
*/
public static function env(string $value = null, $fallback = '')
{
$val = getenv($value);
if ($val == null || $val == '') return $fallback;
return $fallback;
}
/**
* Get old value or fallback
*
* @param mixed $value
* @param mixed $fallback
* @return void
*/
public static function old($value, $fallback = '')
{
return Variable::has('form.old') ? (isset(Variable::get('form.old')[$value]) ? Variable::get('form.old')[$value] : $fallback) : $fallback;
}
/**
* Dump
*
* @return void
*/
public static function d()
{
$args = func_get_args();
call_user_func_array('dump', $args);
}
/**
* Die and dump
*
* @return void
*/
public static function dd()
{
$args = func_get_args();
call_user_func_array('dump', $args);
die();
}
/**
* Set url (don't use this)
*
* @param mixed $path
* @return void
*/
public static function url(string $path, $uri)
{
$path = substr($path, 0, 1) != '/' ? '/' . $path : $path;
$root = isset($_SERVER["SCRIPT_NAME"]) ? $_SERVER['SCRIPT_NAME'] : '';
$dir = pathinfo($root)['dirname'];
if (isset($_SERVER['HTTP_HOST'])) {
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
$http = 'https://';
} else {
$http = 'http://';
}
$url = $http . $_SERVER['HTTP_HOST'] . ($dir == '/' ? '' : $dir) . $path;
} else {
$url = ($uri ? config('app.url') : '') . $path;
}
if (isset($_SERVER['QUERY_STRING'])) {
if (str_contains($url, '?')) $url .= '&' . $_SERVER['QUERY_STRING'];
if (!str_contains($url, '?')) $url .= '?' . $_SERVER['QUERY_STRING'];
}
return $url;
}
/**
* Check if string is base64 or not
*
* @param string $string
* @return bool
*/
public static function is_base64(string $string) : bool
{
if (base64_encode(base64_decode($string, true)) === $string) return true;
return false;
}
/**
* If ? then
*
* @param bool $if
* @param mixed $then
* @return void
*/
public static function then(bool $if, $then)
{
if ($if == true) return $then;
}
/**
* Require once
*
* @param string $path
* @return void
*/
public static function startphp(string $path)
{
if (substr($path, strlen($path) - 4, 4) == '.php') return require_once $path;
return require_once $path . '.php';
}
/**
* database_path
*
* @param string $file
* @return void
*/
public static function database_path(?string $file = null)
{
$file = (substr($file, 0, 1) == DIRECTORY_SEPARATOR ? substr($file, 1) : $file);
return config('app.dir') . 'database' . DIRECTORY_SEPARATOR . $file;
}
/**
* storage_path
*
* @param string $file
* @return void
*/
public static function storage_path(?string $file = null)
{
$file = (substr($file, 0, 1) == DIRECTORY_SEPARATOR ? substr($file, 1) : $file);
return config('app.dir') . 'storage' . DIRECTORY_SEPARATOR . $file;
}
/**
* public_path
*
* @param string $file
* @return void
*/
public static function public_path(?string $file = null)
{
$file = (substr($file, 0, 1) == DIRECTORY_SEPARATOR ? substr($file, 1) : $file);
return config('app.dir') . 'storage' . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . $file;
}
/**
* bsae_path
*
* @param string $file
* @return void
*/
public static function base_path(?string $file = null)
{
$file = (substr($file, 0, 1) == DIRECTORY_SEPARATOR ? substr($file, 1) : $file);
return config('app.dir') . $file;
}
/**
* Cancel application cycle
*
* @param mixed $message
* @return void
*/
public static function cancel($message = null)
{
die($message != null ? $message : '');
}
}