CURLM_CALL_MULTI_PERFORM is deprecated

    do {
        $mrc = curl_multi_exec($mc, $active);
    } while ($mrc == CURLM_CALL_MULTI_PERFORM);

Is there an alternative? Curl version 7.27.0

+4
source share
2 answers

try:

do {
    $mrc = curl_multi_exec($mc, $active);
} while ($active > 0);
+9
source

This is not entirely clear if CURLM_CALL_MULTI_PERFORM is outdated or not.

The symbol exists . Deletion was not mentioned in 7.27.0 Notes on changes .

As @tne pointed out in his comment: it seems reasonable to ignore it.

+2
source

All Articles