类 yii\web\HeadersAlreadySentException
| 继承关系 | yii\web\HeadersAlreadySentException » yii\base\Exception » Exception |
|---|---|
| 可用版本 | 2.0.14 |
| 源代码 | https://github.com/yiisoft/yii2/blob/master/framework/web/HeadersAlreadySentException.php |
HeadersAlreadySentException 代表一个由在发送网络响应前已经发送的任何头引起的异常。
方法详情
| public void __construct ( $file, $line ) | ||
| $file | ||
| $line | ||
public function __construct($file, $line)
{
$message = YII_DEBUG ? "Headers already sent in {$file} on line {$line}." : 'Headers already sent.';
parent::__construct($message);
}
注册 或 登录 以发表评论。