14 lines
198 B
PHP
14 lines
198 B
PHP
<?php
|
|
|
|
$app = new \think\App();
|
|
$app->config->set([
|
|
'default' => 'file',
|
|
'stores' => [
|
|
'file' => [
|
|
'type' => 'File',
|
|
],
|
|
],
|
|
], 'cache');
|
|
|
|
$app->initialize();
|