是否可以使用file_get_contents()
发送标头和POST数据?
我尝试使用以下代码
$postdata = http_build_query(
array(
'var1' => 'some content',
'var2' => 'doh'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);
但它不起作用。
" file_get_contents():php_network_getaddresses:getaddrinfo failed:(...)"
中未知的名称或服务
你知道代码有什么问题吗?