php-symfonyHow to get the current URL in PHP Symfony?
The current URL in PHP Symfony can be obtained using the getPathInfo() method of the Request object.
Example code
$request = Request::createFromGlobals();
$currentUrl = $request->getPathInfo();
Output example
/current/url
Code explanation
Request::createFromGlobals(): creates a new Request object from the PHP global variables.getPathInfo(): returns the path being requested relative to the executed script.
Helpful links
More of Php Symfony
- What are the required PHP Symfony extensions?
- How to integrate Vue.js with PHP Symfony?
- How to manage sessions in Symfony with PHP?
- How to get request parameters in PHP Symfony?
- How to use Twig in Symfony with PHP?
- How to run a command in PHP Symfony?
- How to use Prometheus with PHP Symfony?
- How to use the messenger component in PHP Symfony?
- How to use websockets in PHP Symfony?
- How to generate a model in PHP Symfony?
See more codes...