|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-02-24 01:41 UTC] k dot andris at gmail dot com
Description: ------------ cURL's curl_multi_timeout() is not supported in PHP so there is no way to set a timout for 'multi' type request. Also, curl_multi_select() is not documented enough. what does it return, and how to 'select' it. Reproduce code: --------------- try to call it Expected result: ---------------- call cURL's function PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 14:00:01 2025 UTC |
_select() would be better, since doing this (manual's example): do { curl_multi_exec($mh, $running); } while($running > 0); Is I think is a waste of CPU cycles.