do { $mrc = curl_multi_exec($mc, $active); } while ($mrc == CURLM_CALL_MULTI_PERFORM);
Is there an alternative? Curl version 7.27.0
try:
do { $mrc = curl_multi_exec($mc, $active); } while ($active > 0);
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.