Google将xml结果保存到文件中

时间:2012-01-31 22:33:29

标签: php

我正在尝试将google api的xml结果保存到文件中,但由于某些原因,即使我想在屏幕上显示它也不会起作用。有什么想法吗?

<?php
$url ="http://maps.googleapis.com/maps/api/geocode/xml?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false";

if (file_exists($url)) {
    $xml = simplexml_load_file($url);
     print_r($xml); #  <-- Display in browser
} else {
    exit('Failed!');
}
?>

1 个答案:

答案 0 :(得分:1)

您无法将file_exists()与网址一起使用。如果用file_get_contents()之类的内容替换它,其余代码将按预期工作。