我正在尝试从 Contrie 接收有关 Alexa 热门站点的信息,并且我希望收到:
- 网站位置;
- 网址;
对于我已经获得的 URL,但是当我为网站位置添加标签时,某些东西不起作用,这是我的代码:
<?php
for ($z=0;$z<2;$z++) {
$html=file_get_contents('http://www.alexa.com/topsites/countries;'.$z.'/PT');
preg_match_all(
'/<div class="count">.*?<\/div>.*?<a href="\/siteinfo\/.*?">(.*?)<\/a>/s',
$html,
$array, //array with sites
PREG_SET_ORDER
);
for ($i=1;$i<count($array);$i++) {
echo "<pre>"; print_r($array); echo "</pre>";
}
}
?>
我得到这个:
Array
(
[0] => Array
(
[0] =>
1
google.pt
[1] => google.pt
)
[1] => Array
(
[0] =>
2