0

我正在尝试添加当用户使用 weather.com 在表单中搜索机场代码时生成的请求标头。我已成功请求第一页,但我需要帮助弄清楚如何在当前 URL 的末尾添加搜索查询字符串。

查询字符串是search?where=phx&start_with=1&search_loc_type=9&x=5&y=13. 是phx机场代码。

我试图弄清楚如何添加这个查询字符串,例如,search?where="Airport_variable".&start_with=1&search_loc_type=9&x=5&y=13.

因此,当一个人键入机场代码时,它会由 weather.com 服务器获取并添加到搜索查询中,并根据该查询显示搜索结果*h*e。

有人可以帮帮我吗?

这是我到目前为止所拥有的:

<?php
   $URL = "http://www.weather.com/activities/travel/businesstraveler/";   
   $chwnd = curl_init();
   curl_setopt($chwnd, CURLOPT_URL,$URL);
   curl_setopt($chwnd, CURLOPT_VERBOSE, 1);
   curl_setopt($chwnd, CURLOPT_POST, 1);
   curl_setopt($chwnd, CURLOPT_POSTFIELDS, TRUE);
   $returned = curl_exec($chwnd);
   curl_close ($chwnd);
   // /search?where=bhm&start_with=1&search_loc_type=9&x=0&y=0
?>
4

1 回答 1

0

好吧 - 如果这是您的最终查询search?where=phx&start_with=1&search_loc_type=9&x=5&y=13,那么只需按照您的喜好组装它:

//take the paremeter: (using post ?! )
$Airport_variable = $_POST['where'];

$url = "http://www.weather.com/activities/travel/businesstraveler/";
//quertstring:
$url .= 'search?where=' . $Airport_variable . '&start_with=1&search_loc_type=9&x=5&y=13';

$chwnd = curl_init();
curl_setopt($chwnd, CURLOPT_URL,$url);
.
.
.
于 2013-04-21T22:16:45.640 回答