使用file_get_contents在PHP中发布方法?

时间:2015-09-21 13:29:56

标签: php file-get-contents

我需要向网站(http://www.itu.int/online/mms/mars/ship_search.sh)提交表单,并使用以下代码:

$postdata = http_build_query(
    array(
        'sh_mmsi' => '246709000'
    )
);
$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://www.itu.int/online/mms/mars/ship_search.sh', false, $context);

由于某种原因未触发搜索查询。如果我点击了URL地址http://www.itu.int/online/mms/mars/ship_search.sh?sh_mmsi=246709000中的“提交”按钮,则结果会显示在结尾处。我想知道问题是这个网站有两种形式,我需要指定哪一个发布到?如果是这样,我该怎么做?

0 个答案:

没有答案