Advertisement
thexiv

And it won't stop

Jan 1st, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. do {
  3. $mrc = curl_multi_exec($cm, $active);
  4. } while ($mrc == CURLM_CALL_MULTI_PERFORM);
  5. while ($active && $mrc == CURLM_OK) {
  6. if (curl_multi_select($cm) != -1) {
  7. do {
  8. $mrc = curl_multi_exec($cm, $active);
  9. } while ($mrc == CURLM_CALL_MULTI_PERFORM);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement