-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (21 loc) · 1018 Bytes
/
index.php
File metadata and controls
26 lines (21 loc) · 1018 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
<?php
// --------------------------------------------------------------
// Aktifkan output buffering
// --------------------------------------------------------------
ob_start();
// --------------------------------------------------------------
// Catat timer awal (untuk benchmark)
// --------------------------------------------------------------
define('RAKIT_START', microtime(true));
// --------------------------------------------------------------
// Definisikan konstanta untuk directory separator.
// --------------------------------------------------------------
define('DS', DIRECTORY_SEPARATOR);
// --------------------------------------------------------------
// Include konstanta path milik framework.
// --------------------------------------------------------------
require __DIR__ . DS . 'paths.php';
// --------------------------------------------------------------
// Jalankan frameworknya.
// --------------------------------------------------------------
require path('system') . 'boot.php';