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?
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.
Symfony 3+
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
$this->generateUrl('your_route_name', array('/* your route parameters */'), UrlGeneratorInterface::ABSOLUTE_URL);
Try the following:
$url = $this->generateUrl('your_route_name');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With