I'm wondering how I can use file_get_contents to load an external page and exit off before the page loads (I don't need the output). Here's the essential flow:
A: POST request with file_get_contents to B
B:
ignore_user_abort(true);
and does a very long actionA: finishes right after it makes the connection to B
B: finishes after the very long action
How would I go about "exiting" right when script B starts executing (before the page loads)