In some of my PHP scripts I am using this code to POST
data to a URL:
$file = @file_get_contents();
This will only POST
data, content returned by server is empty. The executed script is really unimportant and isn't needed for the main script that gets executed. It's like a log file.
Normally PHP will wait until this is ready executed.
Is there a way to call $file=@file_get_contents();
without waiting for the result? Just call it and execute the next command without taking care of $file=@file_get_contents();
?
I have already searched for this problem but only found solutions for the console.