Esempio n. 1
0
<?php

// comment out the following two lines when deployed to production
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
$config = (require __DIR__ . '/../config/web.php');
$service = new \yii\di\ServiceLocator();
$service->set('cache', 'yii\\caching\\FileCache');
//(new yii\web\Application($config))->set('locator', $service);
//(new yii\web\Application($config))->run();
$application = new yii\web\Application($config);
$application->set('locator', $service);
$application->run();
Esempio n. 2
0
<?php

// comment out the following two lines when deployed to production
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
$config = (require __DIR__ . '/../config/web.php');
require __DIR__ . '/../config/bootstrap.php';
$application = new yii\web\Application($config);
$application->set('locator', $locator);
$application->run();