php curl long polling -


is long polling allowed on php curl? how can make long polling request? using ajax call php file makes call, want long polling there do?

$curl = curl_init();  curl_setopt_array($curl, array( curlopt_returntransfer => 1, curlopt_url => 'http://testcurl.com/?item1=value&item2=value2', curlopt_useragent => 'codular sample curl request' ));  $resp = curl_exec($curl); 

how can modify long polling? new appreciated


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -