Skip to content

Commit cf554e1

Browse files
committed
minor #60377 [HttpFoundation] Emit PHP warning when Response::sendHeaders() is called while output has already been sent (ivo95v)
This PR was merged into the 7.3 branch. Discussion ---------- [HttpFoundation] Emit PHP warning when `Response::sendHeaders()` is called while output has already been sent | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT Description: When Symfony attempts to send HTTP headers via the sendHeaders() method, it silently aborts if headers have already been sent (e.g., due to whitespace before the <?php tag). I spent an entire day debugging this issue and discovered that the problem was caused by an unintended whitespace before a PHP opening tag. To avoid this kind of silent failure and make future debugging easier, I decided to add an error log. Commits ------- a69cf15 [HttpFoundation] Emit PHP warning when Response::sendHeaders() while output has already been sent
2 parents 392d0c9 + a69cf15 commit cf554e1

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