projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
tweeper.php: check curl_exec() return value
[tweeper.git]
/
tweeper.php
diff --git
a/tweeper.php
b/tweeper.php
index
45b6fa8
..
b1809ed
100644
(file)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-89,6
+89,9
@@
class Tweeper {
CURLOPT_USERAGENT => Tweeper::$userAgent,
));
$contents = curl_exec($ch);
CURLOPT_USERAGENT => Tweeper::$userAgent,
));
$contents = curl_exec($ch);
+ if (FALSE === $contents) {
+ trigger_error(curl_error($ch));
+ }
curl_close($ch);
return $contents;
curl_close($ch);
return $contents;
@@
-111,6
+114,9
@@
class Tweeper {
));
curl_exec($ch);
$url_info = curl_getinfo($ch);
));
curl_exec($ch);
$url_info = curl_getinfo($ch);
+ if (FALSE === $url_info) {
+ trigger_error(curl_error($ch));
+ }
curl_close($ch);
return $url_info;
curl_close($ch);
return $url_info;
@@
-123,6
+129,7
@@
class Tweeper {
$supported_content_types = array(
"application/octet-stream",
"application/ogg",
$supported_content_types = array(
"application/octet-stream",
"application/ogg",
+ "application/pdf",
"audio/aac",
"audio/mp4",
"audio/mpeg",
"audio/aac",
"audio/mp4",
"audio/mpeg",