Is there any equivalent to Response.End
in PHP?
Asked
Active
Viewed 1.5k times
1 Answers
21
exit();
die();
flush();

Omnipresent
- 29,434
- 47
- 142
- 186
-
2Note that `flush` *doesn’t end* the response. It empties the response buffer, but continues to write to it. – dakab Jun 11 '16 at 23:44