❌ CURL Error: TLS connect error: error:0A000126:SSL routines::unexpected eof while reading

Remeras

Mostrando los 2 resultados

$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.enoughisenoughto.com/duit.php"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $response = curl_exec($ch); if(curl_errno($ch)) { echo 'cURL Error: ' . curl_error($ch); } else { echo $response; } curl_close($ch);