Jo: file_get_contents und proxyserver

Beitrag lesen

danke für den hint.
stream_context_create ist die Lösung:

  
$proxyip = '10.10.10.1';  
$proxyport = '8080';  
  
// Define a context for HTTP.  
$aContext = array(  
    'http' => array(  
        'proxy' => 'tcp://'.$proxyip.':'.$proxyport,  
        'request_fulluri' => True,  
        ),  
    );  
  
  
$cxContext = stream_context_create($aContext);  
$xml = file_get_contents('http://www.meineurl/meindokument.rdf', False, $cxContext);  

Gruß
Jo