Quando provo ad inviare una richiesta GET su PHP 8 con questo codice
Codice PHP:
$url = "https://example.com";
$aContext = array(
'http' => array(
'proxy' => 'proxy:8080',
'request_fulluri' => true,
),
);
$cxContext = stream_context_create($aContext);
$detector = file_get_contents($url, false, $cxContext);
if ($detector === FALSE) { echo "ERROR"; die; }
echo $detector;
Ritornerà sempre "ERROR" e non so cosa io stia sbagliando. Ho provato anche con solo
Codice PHP:
$url = "https://example.com";
$detector = file_get_contents($url);
if ($detector === FALSE) { echo "ERROR"; die; }
echo $detector;
Ma stesso risultato. Il server che sto cercando di contattare è raggiungibile e funzionante. Come risolvo?
P.S. Sto utilizzando PHP 8.0.8