这似乎是一件容易的事,但我无法让它发挥作用。
我需要访问墨西哥银行公开提供的一些数据。您可以通过链接找到的表单提供数据:http://www.banxico.org.mx/SieInternet/consultarDirectorioInternetAction.do?accion=consultarCuadro&idCuadro=CP5&locale=es 您可以通过单击左上部分的“html”按钮查看我需要的数据示例。打开该表后,我知道如何获取我需要的数据并使用它们。但是,我希望将此作为一项自动化任务,以便脚本可以在新数据可用时定期检查。
所以,我试图使用file_get_contents()和stream_context_create()来发布我需要的参数并打开结果页面,所以我可以使用它。
我尝试了几种不同的方式(首先我使用的是http_post_fields()),但似乎没有任何效果。 现在我的代码是这样的:
<?php
$url = 'http://www.banxico.org.mx/SieInternet/consultarDirectorioInternetAction.do?accion=consultarSeries';
$data = array(
'anoFinal' => 2015,
'anoInicial' => 2015,
'formatoHTML.x' => 15,
'formatoHTML.y' => 7,
'formatoHorizontal' => false,
'idCuadro' => 'CP5',
'locale' => 'es',
'sector' => 8,
'series' => 'SP1',
'tipoInformacion' => '',
'version' => 2
);
$postdata = http_build_query($data);
$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($url, false, $context);
//returns bool(false)
?>
我错过了什么?我注意到,如果发送了错误的参数,页面确实没有返回任何内容(正如您可以通过简单地打开http://www.banxico.org.mx/SieInternet/consultarDirectorioInternetAction.do?accion=consultarSeries而没有任何帖子数据看到:没有返回任何内容),因此我不确定帖子是否成功但是没有返回任何因为某些参数错误,或者代码错误。
发布的数据应该没问题,因为我直接从我手动创建的成功查询中复制它们。 我错过了什么?
答案 0 :(得分:0)
事实证明,cURL是一种更好的方法,感谢CBroe的建议。
以下是我正在使用的固定代码,如果其他人需要它:
<?php
//$url and $data are the same as above
//initialize cURL
$handle = curl_init($url);
//post values
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
//set to return the response
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
//execute
$response = (curl_exec( $handle ));
?>