指定した座標を持つ xml データからのみ方向情報を取得する必要があります。ここに私のコードがあります
<?php
$string= simplexml_load_file("http://maps.googleapis.com/maps/api/directions/xml?origin=37.036543,35.288086&destination=36.997415,35.288067&sensor=false");
print_r ($string);
$xml = new SimpleXMLElement($string);
$result = $xml->xpath('/WebServiceRequest/result[2]/message/text()');
while(list( , $node) = each($result)) {
echo 'b/c: ',$node,"\n";
}
?>
しかし、次のエラーが発生します: 警告: SimpleXMLElement::__construct() [simplexmlelement.--construct]: エンティティ: 4 行目: パーサー エラー: 開始タグが必要です。
もちろん、残りのエラーがあります。