【opencart3源码分析】入口文件index.php

<?php
// 定义版本号
define('VERSION', '3.1.0.0_a1');

// 加载配置文件
if (is_file('config.php')) {
	require_once('config.php');
}

// 安装
if (!defined('DIR_APPLICATION')) {
	header('Location: install/index.php');
	exit;
}

// 初始化
require_once(DIR_SYSTEM . 'startup.php');

//加载framework.php
start('catalog');

猜你喜欢

转载自blog.csdn.net/qq2942713658/article/details/81323965
今日推荐