This commit is contained in:
2021-04-23 12:25:21 +08:00
parent 6332e9e251
commit 0376fbd7c7
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -225,13 +225,11 @@ class Response extends HttpService
{
$sendData = $this->setHeaders($status, $sendData);
if (mb_strlen($sendData) >= 134217728) {
var_dump($sendData);
$this->response->end('');
} else {
$this->response->end($sendData);
}
$this->response = null;
unset($this->response);
return $sendData;
}