从控制器发送头的几个示例...
/* 设置 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' ],但是建议扩展请求类对超级全局变量进行一些清理,然后您就可以正常使用了。