2016-11-25 39 views
1

我想在使用PHP的服務器上的地理編碼。以下是我的代碼:PHP的服務器地理編碼與谷歌地圖返回狀態確定,但沒有別的

static private function curl_file_get_contents($URL){ 
    $c = curl_init(); 
    curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($c, CURLOPT_URL, $URL); 
    $contents = curl_exec($c); 
    curl_close($c); 

    if ($contents) return $contents; 
     else return FALSE; 
} 


public function preview(Request $request) 
{ 
    $url = "https://maps.googleapis.com/maps/api/geocode/json?key=my_api_key&address=1600+Amphitheatre+Parkway,+Mountain+View,+CA"; 

    $resp_json = self::curl_file_get_contents($url); 
    $resp = json_decode($resp_json, true); 

    if($resp['status']='OK'){ 
     dd($resp); 
    }else{ 
     dd('not ok'); 
    } 

當我運行這個我的狀態是OK和dd($ resp);得到執行,其輸出只是這樣的:

array:1 [▼ 
    "status" => "OK" 
] 

我看過的例子JSON響應這裏:https://developers.google.com/maps/documentation/geocoding/intro

應該還有很多更應返回,但在我的情況下,它不會被退回。我不知道它爲什麼能有什麼關係我跑這個地方,雖然在這種情況下,它不應該返回狀態:OK

我休耕這裏http://erlycoder.com/45/php-server-side-geocoding-with-google-maps-api-v3

編輯例如: 如果我過去,這爲瀏覽器直接

https://maps.googleapis.com/maps/api/geocode/json?key=my_api_key&address=1600+Amphitheatre+Parkway,+Mountain+View,+CA

那麼很多返回更多的數據

{ 
    "results" : [ 
     { 
     "address_components" : [ 
      { 
       "long_name" : "1600", 
       "short_name" : "1600", 
       "types" : [ "street_number" ] 
      }, 
      { 
       "long_name" : "Amphitheatre Parkway", 
       "short_name" : "Amphitheatre Pkwy", 
       "types" : [ "route" ] 
      }, 
      { 
       "long_name" : "Mountain View", 
       "short_name" : "Mountain View", 
       "types" : [ "locality", "political" ] 
      }, 
      { 
       "long_name" : "Santa Clara County", 
       "short_name" : "Santa Clara County", 
       "types" : [ "administrative_area_level_2", "political" ] 
      }, 
      { 
       "long_name" : "California", 
       "short_name" : "CA", 
       "types" : [ "administrative_area_level_1", "political" ] 
      }, 
      { 
       "long_name" : "USA", 
       "short_name" : "US", 
       "types" : [ "country", "political" ] 
      }, 
      { 
       "long_name" : "94043", 
       "short_name" : "94043", 
       "types" : [ "postal_code" ] 
      } 
     ], 
     "formatted_address" : "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA", 
     "geometry" : { 
      "location" : { 
       "lat" : 37.4223664, 
       "lng" : -122.084406 
      }, 
      "location_type" : "ROOFTOP", 
      "viewport" : { 
       "northeast" : { 
        "lat" : 37.4237153802915, 
        "lng" : -122.0830570197085 
       }, 
       "southwest" : { 
        "lat" : 37.42101741970851, 
        "lng" : -122.0857549802915 
       } 
      } 
     }, 
     "place_id" : "ChIJ2eUgeAK6j4ARbn5u_wAGqWA", 
     "types" : [ "street_address" ] 
     } 
    ], 
    "status" : "OK" 
} 

回答

0

我已經加入

curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 0); 
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0); 
-1

請檢查您的服務器配置和檢查捲曲支持或不解決它。 使用此代碼檢查您的服務器配置

<?php 
    function get_tls_version($sslversion = null) 
    { 
    $c = curl_init(); 
    curl_setopt($c, CURLOPT_URL, "https://www.howsmyssl.com/a/check"); 
    curl_setopt($c, CURLOPT_RETURNTRANSFER, true); 
    if ($sslversion !== null) { 
     curl_setopt($c, CURLOPT_SSLVERSION, $sslversion); 
    } 
    $rbody = curl_exec($c); 
    if ($rbody === false) { 
    $errno = curl_errno($c); 
    $msg = curl_error($c); 
    curl_close($c); 
    return "Error! errno = " . $errno . ", msg = " . $msg; 
    } else { 
    $r = json_decode($rbody); 
    curl_close($c); 
    return $r->tls_version; 
    } 
    } 
echo "<pre>\n"; 
echo "OS: " . PHP_OS . "\n"; 
echo "uname: " . php_uname() . "\n"; 
echo "PHP version: " . phpversion() . "\n"; 
$curl_version = curl_version(); 
echo "curl version: " . $curl_version["version"] . "\n"; 
echo "SSL version: " . $curl_version["ssl_version"] . "\n"; 
echo "SSL version number: " . $curl_version["ssl_version_number"] . "\n"; 
echo "OPENSSL_VERSION_NUMBER: " . dechex(OPENSSL_VERSION_NUMBER) . "\n"; 
echo "TLS test (default): " . get_tls_version() . "\n"; 
echo "TLS test (TLS_v1): " . get_tls_version(1) . "\n"; 
echo "TLS test (TLS_v1_2): " . get_tls_version(6) . "\n"; 
echo "</pre>\n"; 
?> 
+0

如果不支持curl,則不會產生提及的輸出。 –

相關問題