dphdh395195 2016-05-26 02:12
浏览 42
已采纳

从Symfony中的EventListener创建可重用/全局变量

I use an EventListener which checks permissions of Users accessing each controller and log those actions. I now want to add a unique identifier for each call and add it to the log. While that is easy INSIDE the EventListener, is there a way to use the same $var that was created in the EventListener in the Controller that called the EventListener?

Example:

User accesses Controller::Something --> EventListener gets called unique $uid gets created --> use that $uid inside of the controller again.

My EventListener:

public function onKernelController(FilterControllerEvent $event)
{
   $uid = rand();
   ...
   /* Log Action */
   $this->log->writeLog('SOME MESSAGE', __LINE__, 3, $uid);
   ...
}

My Controller:

/**
 * @Route("/admin/_ajax/_saveNewClient", name="saveNewClient")
 */
public function saveNewClientAction(Request $request)
{
    //DO STH
    ...
    /* Log Action */
    $this->get('log')->writeLog(
     'OTHER MESSAGE AFTER EVENTLISTENER', __LINE__, 1, $uid); //$uid from EventListener
    ...
}
  • 写回答

1条回答 默认 最新

  • duanqi5333 2016-05-26 02:34
    关注

    you can use session :

    $session = new Session();
    $session->start();
    
    // set and get session attributes
    $session->set('LINE', 'value');
    $session->get('LINE');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部