我正在尝试使用 file_get_contents 访问外部 url。我得到了 302 作为响应。它在我的本地主机中运行良好。
$to_currency= 'GBP';
$from_currency = 'USD';
$amount= 100;
$urlarg = "hl=en&q=$amount$from_currency%3D%3F$to_currency";
file_get_contents("http://google.com/ig/calculator?".$urlarg);
如何解决这个问题?