一些关于如何在控制器中发送头的例子…
/* 设置Content-Type */
$response = $this -> getResponse();
$response -> setHeader( 'Content-Type', 'text/html; charset=utf-8' );
$response -> response();
/* 设置HTTP状态 */
$response = $this -> getResponse();
$response -> setHeader( $this -> getRequest() -> getServer( 'SERVER_PROTOCOL' ), '404 Not Found' );
$response -> response();
你也可以使用 $_SERVER[ 'SERVER_PROTOCOL' ],但是建议扩展请求类来清理超级全局变量,这样应该就可以了。