O
O
Optimus2018-03-01 22:15:31
PHP
Optimus, 2018-03-01 22:15:31

CURL how not to wait for a response?

There is a simple code:

$v1 = microtime(true);
$main = curl_init('http://site.com/test.php');
curl_setopt($main, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($main, CURLOPT_USERAGENT, 'Opera/9.80');
curl_setopt($main, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($main);

$v2 = microtime(true);
echo $v2 - $v1.'<br>';
echo 'ok';

The landing page has the following http://site.com/test.phpcode:
sleep(3);
echo 'цель';

As a result, the first script always waits for the second one to complete and send a response, i.e. its operating time is at least 3 seconds.
How can I send a curl request and not wait for a response, but immediately show ok in the first script?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Aksentiev, 2018-03-01
Pyan @marrk2

https://stackoverflow.com/a/962920

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question