<?php
include_once 'forecastVo.php';
include_once 'BaseVo.php';
$count=0;
$json_url = file_get_contents(
'http://maps.google.com/maps/api/geocode/json' .
'?address='jaipur'&sensor=false'); //line 9
if($json_url){
$obj = json_decode($json_url,true);
$obj2= $obj['results'];
}
?>
我收到一个错误:
解析错误:语法错误,第 9 行 /home/a4101275/public_html/index.php 中的意外 T_STRING
第 9 行是我使用file_get_contents
.
错误是什么意思,我该如何解决?