File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ public function run(): void {
52
52
* Setup
53
53
*/
54
54
55
+ // Start output buffering as any PHP notice would return 503 error code
56
+ // if printed before setting headers.
57
+ ob_start ();
58
+
55
59
// Start profiling as early as possible.
56
60
$ this ->profile = new Profile ();
57
61
$ this ->status = new Status ();
@@ -111,6 +115,11 @@ public function run(): void {
111
115
$ payloads = $ this ->status2logs ($ payloads , 'error ' );
112
116
$ this ->logErrors ($ payloads , 'error ' );
113
117
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
+
114
123
if (!empty ($ payloads )) {
115
124
$ code = 500 ;
116
125
$ msg = 'INTERNAL ERROR ' ;
@@ -142,6 +151,10 @@ public function run(): void {
142
151
$ profiling_tbl = $ this ->profile ->getTextTable (PHP_EOL );
143
152
print <<<TXT
144
153
154
+ <pre>
155
+ $ buffered_output
156
+ </pre>
157
+
145
158
<pre>
146
159
$ status_tbl
147
160
</pre>
You can’t perform that action at this time.
0 commit comments