我需要使用以下代码从远程主机获取数据。
$url = 'https://domain.com/cgi-bin/cgi.exe';
$data = array('email' => $email, 'password' => $password);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
它在内部网络上运行良好,但在外部网络上运行不正常。已为端口80和443打开防火墙,但仍然无法正常工作。还有什么我想念的吗?
答案 0 :(得分:2)
您的服务器必须将allow_url_fopen属性设置为true
file_get_contents('http path to file');