Add check against curl_init failure in runCurl
This commit is contained in:
parent
ada82f07b6
commit
ddab52b1a5
|
@ -184,7 +184,9 @@ final class MD_STD {
|
|||
*/
|
||||
public static function runCurl(string $url, int $timeout = 1200):string {
|
||||
|
||||
$curl = \curl_init();
|
||||
if (($curl = \curl_init()) === false) {
|
||||
throw new MDExpectedException("Curl initialization failed.");
|
||||
}
|
||||
|
||||
\curl_setopt($curl, CURLOPT_URL, $url);
|
||||
\curl_setopt($curl, CURLOPT_HEADER, false);
|
||||
|
|
Loading…
Reference in New Issue
Block a user