-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.php
More file actions
40 lines (31 loc) · 866 Bytes
/
init.php
File metadata and controls
40 lines (31 loc) · 866 Bytes
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
<?php
define('ROOTDIR', $_SERVER['DOCUMENT_ROOT']);
define('DEBUGMODE', true);
$configData = require ROOTDIR . '/config/index.php';
define('CONFIG', $configData);
if (DEBUGMODE) {
ini_set('display_errors', 1);
error_reporting(E_ALL);
}
if (file_exists(ROOTDIR . '/src/helpers/functions.php')) {
require_once ROOTDIR . '/src/helpers/functions.php';
}
// .env variables
loadEnv(ROOTDIR . '/.env');
// AUTOLOADER
spl_autoload_register(function ($className) {
// Class Request -> Request.php
$file = $className . '.php';
$directories = [
ROOTDIR . '/src/core/',
ROOTDIR . '/src/helpers/',
ROOTDIR . '/src/services/',
ROOTDIR . '/src/utils/'
];
foreach ($directories as $dir) {
if (file_exists($dir . $file)) {
require_once $dir . $file;
return;
}
}
});