Need explanation between body->close() and emit('end') #604
Unanswered
quazardous
asked this question in
Q&A
Replies: 1 comment
-
If you're controlling the body or are the source of it's data you are emitting from it so you can |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm using php react to POST feeds, like thousands of lines.
some times I've silent broken uploads.
ChatGPT pointed me out the I should not use
$body->emit('end');
but$body->close();
Could someone explain the conceptual difference between
$body->emit('end');
and$body->close();
?Beta Was this translation helpful? Give feedback.
All reactions