forked from Dejavu-Tech/EP-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ep.php
29 lines (21 loc) · 755 Bytes
/
ep.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
<?php
/**
* eaterplanet 商城系统
*
* ==========================================================================
* @link https://e-p.cloud/
* @copyright Copyright (c) 2019-2024 Dejavu Tech.
* @license https://github.com/Dejavu-Tech/EP-Admin/blob/main/LICENSE
* ==========================================================================
*
* @author Albert.Z
*
*/
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
header( "Content-Type:text/html; charset=utf-8");
define('APP_DEBUG', true);
define('BIND_MODULE','Seller');
define ('APP_PATH', './Modules/' );
define('ROOT_PATH',str_replace('\\','/',dirname(__FILE__)) . '/');
define ('RUNTIME_PATH','./Runtime/');
require './ThinkPHP/ThinkPHP.php';