in.txt
10
北京 天坛 故宫 天安门 颐和园 圆明园 明十三陵 鼓楼 恭王府 海洋馆 香山公园
getJson.php
$file1 = fopen("in.txt", "r");
while(!feof($file1)) {
$n = fgets($file1);
$str = fgets($file1);
$a = (explode(" ", $str));
}
fclose($file1);
for($i = 1; $i < $n; $i++) {
for($j = $i+1; $j < $n; $j++) {
$url = "http://api.map.baidu.com/direction/v1?mode=transit&origin=".$a[$i]."&destination=".$a[$j]."®ion=".$a[0]."&output=json&ak=************";
$content = "";
$content = file_get_contents($url);
$filename = $a[$i]." ".$a[$j];
$file2 = fopen($filename, "w");
fwrite($file2, $content);
fclose($file2);
}
}
?>
最后生成的文件为:
圆明园 明十三陵
圆明园 海洋馆
等