mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-30 20:20:53 +00:00
Return immediately when already multicurl has already started
This commit is contained in:
@@ -516,6 +516,10 @@ class MultiCurl
|
||||
*/
|
||||
public function start()
|
||||
{
|
||||
if ($this->isStarted) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ($this->curls as $ch) {
|
||||
$this->initHandle($ch);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user