URL için PHP fopen: Windows Alternatifler

0 Cevap php

Ben uzak bir sisteme 2 parametre bir uzak URL (teslim aramak için * nix sistemlerde PHP5'ta aşağıdaki kodu kullanıyorum:

$fp = fopen($url, "r");
$contents = stream_get_contents($fp);
fclose($fp);

Ne yazık ki, aşağıdaki hata iletisiyle Windows / IIS (http düzgün çalışır) (allow_url_fopen kesinlikle etkindir rağmen) https için başarısız olur:

fopen(https://www.example.com/?method=abc&par=xyz) [function.fopen]: failed to open stream: No error in C:\Inetpub\wwwroot\libs\externalSys.php on line 122

Dolayısıyla benim questions:

  1. Başkasının bir çözüm buldu?

  2. Are there any alternatives? Curl is unfortunately not installed/available.

0 Cevap