Tach!
wenn ich es richtig verstanden habe, müsste es so funktionieren.
$opts = array('http' => array( 'method' => 'POST', 'header' => "Content-Type: text/xml\r\n". "Authorization: Basic ".base64_encode("$https_user:$https_password")."\r\n" ) ); $context = stream_context_create($opts); $bild = file_get_contents('https://www.example.com/100_4871.JPG');
Ist es ein POST-Request? Ist der Body vom POST-Request (nicht der Body von der Response) text/xml? Der $context muss auch noch der Funktion file_get_contents() als Parameter übergeben werden.
dedlfix.