使用file_get_contents()

时间:2015-12-16 16:48:01

标签: php web-services

是否可以使用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:(...)"

中未知的名称或服务

你知道代码有什么问题吗?

0 个答案:

没有答案