Skip to content

Commit a69cf15

Browse files
ivo95vnicolas-grekas
authored andcommitted
[HttpFoundation] Emit PHP warning when Response::sendHeaders() while output has already been sent
1 parent 7c43418 commit a69cf15

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Symfony/Component/HttpFoundation/Response.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,11 @@ public function sendHeaders(?int $statusCode = null): static
317317
{
318318
// headers have already been sent by the developer
319319
if (headers_sent()) {
320+
if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) {
321+
$statusCode ??= $this->statusCode;
322+
header(\sprintf('HTTP/%s %s %s', $this->version, $statusCode, $this->statusText), true, $statusCode);
323+
}
324+
320325
return $this;
321326
}
322327

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy