I\'m playing with Slim PHP as a framework for a RESTful API, and so far it\'s great. Super easy to work with, but I do have one question I can\'t find the answer to. How do I gr
For Slim 3/4 you need to use the method getQueryParams() on the PSR 7 Request object.
getQueryParams()
Request
Citing Slim 3 / Slim 4 documentation:
You can get the query parameters as an associative array on the Request object using getQueryParams().