Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了自定义过滤器,它工作得很好。为了测试,我将自定义 HTTP 标头作为响应。但是当出现 404 页面时,我看不到我的自定义 HTTP 标头。
所以我的问题是:我做错了什么还是在其他框架中这是正常和常见的?
解决方案是扩展 sfWebResponse 类并覆盖 send() 方法,如下所示:
class MyWebResponse extends sfWebResponse { public function send() { //custom code parent::send(); } }