Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to use curl_multi_strerror() to get text error message describing the given curl_multi_exec() error code in PHP

1 Answer

0 votes
$cuh1 = curl_init("http://collectivesolver.com/");
$cuh2 = curl_init("http://buyfrompictures.com/");
 
$cumh = curl_multi_init();
 
curl_multi_add_handle($cumh, $cuh1);
curl_multi_add_handle($cumh, $cuh2);
 
$exc = null;
do {
    $status = curl_multi_exec($cumh, $exc);
    if($status > 0) 
        echo "ERROR: " . curl_multi_strerror($status);
} while ($status === CURLM_CALL_MULTI_PERFORM || $exc);

/*
run: 

<html>
<head>

<body>

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Programming &amp; Software Q&amp;A | CollectiveSolver</title>
        <meta name="description" content="Programming...
        ...
*/

 



answered Jun 8, 2016 by avibootz
edited Jul 5, 2016 by avibootz
...