$ch = curl_init(); $options = array( CURLOPT_URL => "http://example.com", CURLOPT_RETURNTRANSFER => true, ); curl_setopt_array($ch, $options); $response = curl_exec($ch); curl_close($ch); echo $response;
$ch = curl_init(); $options = array( CURLOPT_URL => "http://example.com", CURLOPT_RETURNTRANSFER => true, ); curl_setopt_array($ch, $options); $response = curl_exec($ch); curl_close($ch); echo $response;