Files
jinniu-daikuan/app/config.php
T
梁铭洋 97fea48393 Initial commit: 金牛集团贷款档案管理系统
导入现有代码与文档,排除 data/uploads 运行时数据。
2026-08-29 11:52:22 +08:00

15 lines
405 B
PHP
Executable File

<?php
declare(strict_types=1);
const DB_PATH = __DIR__ . '/../data/archive.sqlite';
const UPLOAD_DIR = __DIR__ . '/../uploads';
const MAX_FILE_SIZE = 50 * 1024 * 1024;
const ALLOWED_EXTENSIONS = ['pdf', 'jpg', 'jpeg', 'png', 'gif', 'doc', 'docx', 'xls', 'xlsx'];
date_default_timezone_set('Asia/Shanghai');
mb_internal_encoding('UTF-8');
if (!is_dir(UPLOAD_DIR)) {
mkdir(UPLOAD_DIR, 0775, true);
}