How to write content type in cakephp?

How can I write ["Content-Type"] = "text / xml" in cakephp and in which file should I include this file.

Please, help.

Thank.

+3
source share
1 answer

Cake's way is to use RequestHandlerComponent :: replyAs , for example, $this->RequestHandler->respondAs('xml')somewhere in the controller. This can happen automatically if your application is configured accordingly .

PHP's way is to release header('Content-Type: text/xml')it anywhere before exiting (usually somewhere in the controller).

+5
source

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


All Articles