22 lines
337 B
PHP
22 lines
337 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
*
|
|
*
|
|
*
|
|
* Date: 2022/3/6
|
|
* Time: 15:17
|
|
*/
|
|
define('IN_IA', true);
|
|
|
|
$boot_file = __DIR__ . '/../../../../framework/bootstrap.inc.php';
|
|
|
|
if (file_exists($boot_file)) {
|
|
|
|
@include_once $boot_file;
|
|
|
|
}
|
|
|
|
include_once __DIR__ . '/../../app/laravel.php';
|
|
|
|
include_once __DIR__ . '/../../app/yunshop.php'; |