I beginer in zend framework.
ob_start(“ob_gzhandler”) – why the function not use directly in zend framework project?
(does ob_start(“ob_gzhandler”) used auto in zend framework? )
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Zend Controller Response uses output buffering by default (you may disable it if you wish and use your own handler or oveload default response).
You may set up gzip compression in php.ini easily, so ob_gzhandler is not needed at all.