symfony get query param

To get a query parameter in Symfony, you can use the Request object. Here's an example of how you can do it:

use Symfony\Component\HttpFoundation\Request;

$request = Request::createFromGlobals();
$paramValue = $request->query->get('param_name');

In this example, param_name is the name of the query parameter you want to retrieve. The $paramValue variable will contain the value of the query parameter if it exists.

That's it! This is how you can get a query parameter in Symfony.