0

我的应用程序中的 $_SESSION 有一个奇怪的问题

由于不同的原因我没有在这里解释我有必要在会话中设置我的 AppKernel.php 中的环境

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{

  protected $session;

  public function initializeContainer()
  {
    parent::initializeContainer();

    $this->session = $this->container->get('session');
    $this->session->set('isTestEnv', $this->getEnvironment() == 'test');
  }

在我用来管理对某些 API 的请求的另一个类中,我现在需要获取该参数

namespace Bioversity\ServerConnectionBundle\Repository;

use Symfony\Component\HttpFoundation\Session\Session;
use Bioversity\ServerConnectionBundle\Repository\ServerResponseManager;
use Bioversity\ServerConnectionBundle\Repository\ServerResponseRequestQueryManager;

class ServerRequestManager
{

  protected $wrapper= "http://url/to/the/api.php";   

  public function __construct()
  {
    if($_SESSION['_sf2_attributes']['isTestEnv'] == 'test')
    {
        $this->wrapper= "http://url/to/the/api.test.php";
    }
  }

在浏览器中一切正常,但是当我尝试运行测试时出现一个奇怪的错误

48) ServerConnectionBundle\Tests\Repository\TraitConnectionRepositoryTest::testGetTags
ErrorException: Notice: Undefined variable: _SESSION in ServerConnectionBundle/Repository/ServerRequestManager.php line 41

- - - - - - - -编辑 - - - - - -

我已经更新了我的代码,现在我有一个像这样的参数的服务: env: %kernel.environment%

services:
    bioversity_server_connection:
        class: Bioversity\ServerConnectionBundle\Repository\ServerRequestManager
        arguments: [%env%]

在我的课堂上我添加了

class ServerRequestManager
{    
  public function __construct($env)
  {
    print_r($env);

    //if(array_key_exists('isTestEnv', $_SESSION['_sf2_attributes']))
    //{
        //if($_SESSION['_sf2_attributes']['isTestEnv'] == 'test'){
        if($env == 'test')
        {
            $this->wrapper= "http://temp.wrapper.grinfo.net/TIP/Wrapper.test.php";
            $this->setDatabaseOntology('TEST-'.$this->getDatabaseOntology());
            $this->setDatabasePGRSecure('TEST-'.$this->getDatabasePGRSecure());
            $this->setDatabaseUsers('TEST-'.$this->getDatabaseUsers());
        }
    //}
  }

我已经在我的 config.yml 中导入了 services.yml 但我只有这个错误

警告:在 /home/aczepod/Sites/Bioversity/src/Bioversity/SecurityBundle/Repository/ServerConnection.php 中调用 Bioversity\ServerConnectionBundle\Repository\ServerRequestManager::__construct() 缺少参数 1

现在怎么了!?

4

1 回答 1

0

哇,你到底在做什么。Symfony 有一个参数kernel.environment是指当前环境!如此简单地将%kernel.environment%作为参数注入您的服务。

顺便提一句。使用 PHP-CLI(运行测试)根本没有$_SESSION

于 2013-06-30T14:20:59.603 回答