How do I get the request object in a Bootstrap file? Zend Framework / PHP

Does anyone know how to get the request object in the zend framework mvc bootstrap file. Just try to re-fill the form that is included on each page, if you know a better way to do this instead of using a bootstrap file, please let me know? Thank.

+2


source to share


1 answer


I would not recommend doing this in the bootstrap file. The purpose of the bootstrap file is very specific to a Zend application.

Why don't you try using a plugin that will work during pre-submission. Is it up to sending the Controller of your choice?



You can check the documentation on the plugins topic.

Hello,

+4


source







All Articles