7

Is there any equivalent to Response.End in PHP?

dakab
  • 5,379
  • 9
  • 43
  • 67
Syed Tayyab Ali
  • 3,643
  • 7
  • 31
  • 36

1 Answers1

21
exit();
die();
flush();
Omnipresent
  • 29,434
  • 47
  • 142
  • 186
  • 2
    Note 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