函数变量未显示在带有Symfony 3的xDebug中

时间:2016-11-19 19:27:50

标签: php symfony xdebug

所以我在控制器中有以下动作。当我使用xDebug和Symfony 3时,变量$ request和$ imNotBeingShowin没有显示在xDebug变量列表中。变量$ imBeingShown在分配给类时工作正常。

public function saveAction(Request $request)
{
    $imNotBeingShown = 'why not?';

    $this->imBeingShown = 'wooot';
}

知道发生了什么事吗?我似乎无法在Google中找到有关此问题的任何内容。

/亨德里克

编辑:为校样添加了额外的图像 enter image description here

编辑:app_dev.php变量显示在调试器中 enter image description here

1 个答案:

答案 0 :(得分:0)

  

我添加了一个额外的图像,在调试时带有代码:)。

这不会奏效。一旦你运行了你的程序,它就会被加载到内存中。您无法在运行时更改它。