How to set mime type in zend framework?

I would like to set the mime repsonse type to

application/xhtml+xml

How and where do I install this in the Zend Framework? Thank you for your help.

+3
source share
1 answer

In the action of your controller:

$this->getResponse()->setHeader('Content-type', 'application/xhtml+xml');
+7
source

Source: https://habr.com/ru/post/1755968/


All Articles