It would be very cool to have access to the Query (as Text[Text] for instance) and Fragment (as Text) parts of the current URL !
Eg.
Code: Select all
// http://example.com?foo=bar&wow=such#very
log(Request.Query['foo']); // bar
log(Request.Query['wow']); // such
log(Request.Fragment); // very
http://symfony.com/doc/current/componen ... ml#request
