我需要运行 amazon aws alexa api 脚本来获得域列表的排名。
这就是我所拥有的
public static function parseResponse($response) {
$xml = new SimpleXMLElement($response,null,false,
'http://awis.amazonaws.com/doc/2005-07-11');
if($xml->count() && $xml->Response->TrafficHistoryResult->Alexa->count()) {
$info = $xml->Response->TrafficHistoryResult->Alexa;
$nice_array = array(
'Date' => $info->TrafficHistory->HistoricalData->Data->Date,
'Rank' => $info->TrafficHistory->HistoricalData->Data->Rank,
);
}
foreach($nice_array as $k => $v) {
echo $_GET['domain']. $k . ': ' . $v ."\n <br>";
{INSERT QUERY WILL GO HERE}
}
}
我有一个包含 20 个域的列表。我需要创建一个脚本来获取过去 3 个月内每个域的排名。所以日期将从 2012-09-01 开始,然后是 2012-10-01,然后是 2012-11-01。日期是在此 aws 脚本中较早定义的。
我的问题。如何让脚本确定日期然后使用域名列表获取排名然后插入 mysql 表