Symfony2: Full path to action/route in a controller

controllersymfony

I need the full path to a action inside my controller, to send it via email. How can I achieve something like {{ path('_route') }} from inside my controller but the full path?

Best Answer

Juan's answer is right if you want the local path. The absolute path — which is helpful to be send through email — needs extra parameter(s):

$url = $this->generateUrl('your_route_name', array(), true);

The third parameter indicates that the absolute path is to be generated.

If you want to use this URL in your view just add the $url to the response array in your action and use it.