Use a Custom CakeResponse Class in CakePHP 2.1+
问题 I am trying to use a Custom CakeResponse class however none of my current work nor current searches have led me to a solution towards actually using one. So let's call my custom CakeResponse class AppResponse : AppResponse is in Lib/Network <?php App::uses('CakeResponse', 'Network'); class AppResponse extends CakeResponse { } Based on this blog post http://mark-story.com/posts/view/cakeresponse-in-cakephp-2-0 it appears that one should be able to use this code to override the CakeResponse and