Skip to content

Commit da9cfbb

Browse files
committed
#44 Catch PHP warnings into buffer and return after headers are set.
1 parent c747ab0 commit da9cfbb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

_ping.php

+13
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ public function run(): void {
5252
* Setup
5353
*/
5454

55+
// Start output buffering as any PHP notice would return 503 error code
56+
// if printed before setting headers.
57+
ob_start();
58+
5559
// Start profiling as early as possible.
5660
$this->profile = new Profile();
5761
$this->status = new Status();
@@ -111,6 +115,11 @@ public function run(): void {
111115
$payloads = $this->status2logs($payloads, 'error');
112116
$this->logErrors($payloads, 'error');
113117

118+
// Stop buffering before setting headers. After that it doesn't matter
119+
// if there's any output as script is not going to give 503 error code
120+
// anymore.
121+
$buffered_output = ob_get_clean();
122+
114123
if (!empty($payloads)) {
115124
$code = 500;
116125
$msg = 'INTERNAL ERROR';
@@ -142,6 +151,10 @@ public function run(): void {
142151
$profiling_tbl = $this->profile->getTextTable(PHP_EOL);
143152
print <<<TXT
144153
154+
<pre>
155+
$buffered_output
156+
</pre>
157+
145158
<pre>
146159
$status_tbl
147160
</pre>

0 commit comments

Comments
 (0)