Guest User

Untitled

a guest
Feb 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. require __DIR__ . '/../vendor/autoload.php';
  4. require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
  5.  
  6. // Вот тут стучимся в сессию
  7. $config = require __DIR__ . '/../config/web.php';
  8. session_start();
  9. $config['language'] = isset($_SESSION['language']) ? $_SESSION['language'] : 'ru-RU';
  10.  
  11. (new yiiwebApplication($config))->run();
Add Comment
Please, Sign In to add comment