0 关注者

类 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 代表一个由在发送网络响应前已经发送的任何头引起的异常。

方法详情

隐藏继承方法

__construct() 公共方法

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);
}

            
getName() 公共方法
public string getName ( )
返回 string

此异常的用户友好名称

                public function getName()
{
    return 'Exception';
}