tweeper.php: check curl_exec() return value
authorAntonio Ospite <ao2@ao2.it>
Sun, 30 Oct 2016 09:04:51 +0000 (10:04 +0100)
committerAntonio Ospite <ao2@ao2.it>
Sun, 30 Oct 2016 09:04:51 +0000 (10:04 +0100)
Also show the message of curl_error() when curl_exec() fails, this way
it's easier to diagnose problems.

tweeper.php

index fc3a3ef..b1809ed 100644 (file)
@@ -89,6 +89,9 @@ class Tweeper {
       CURLOPT_USERAGENT => Tweeper::$userAgent,
     ));
     $contents = curl_exec($ch);
+    if (FALSE === $contents) {
+      trigger_error(curl_error($ch));
+    }
     curl_close($ch);
 
     return $contents;
@@ -111,6 +114,9 @@ class Tweeper {
     ));
     curl_exec($ch);
     $url_info = curl_getinfo($ch);
+    if (FALSE === $url_info) {
+      trigger_error(curl_error($ch));
+    }
     curl_close($ch);
 
     return $url_info;