Answer the question
In order to leave comments, you need to log in
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';
http://site.com/test.php
code:sleep(3);
echo 'цель';
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question