php擷取ios或android通過檔案頭(header)傳過來的座標,通過百度介面擷取具體城市和地址,並存入到session中。

來源:互聯網
上載者:User

標籤:ddr   iss   檢查   substr   nts   ret   session   json   component   

首先,在function.php方法檔案中封裝一個擷取header標頭檔的方法。

if (!function_exists(‘getallheaders‘)) {
  function getallheaders() {
    $headers = array();
    foreach ($_SERVER as $name => $value) {
      if (substr($name, 0, 5) == ‘HTTP_‘) {
        $headers[str_replace(‘ ‘, ‘-‘, ucwords(strtolower(str_replace(‘_‘, ‘ ‘, substr($name, 5)))))] = $value;
      }
    }
    return $headers;
  }
}

然後,在相應控制器中調用該方法擷取資料,先檢查session中有沒有位置資訊。

if(!$_SESSION[‘MyLocation‘])
{
  //擷取定位座標
  $location = getallheaders();
  $this->get_location($location);  //調用封裝的方法
}

最後,封裝一個方法,用來請求百度介面返回具體位置資訊,並存到session中。

public function get_location($location)
{
  $lat  = $location[‘Latitude‘];
  $lng = $location[‘Longitude‘];

  if($lat && $lng)
  {
    $url = ‘http://api.map.baidu.com/geocoder/v2/?ak=5BFNbSgnVF5g2O72NpvTDxFm&location=‘ . $lat . ‘,‘ . $lng . ‘&output=json&pois=1‘;
    $html = json_decode(file_get_contents($url),true);

    if($html)
    {
      $myLocation = array(
        ‘city‘   => $html[‘result‘][‘addressComponent‘][‘city‘],
        ‘addr‘ =>  isset($html[‘result‘][‘addressComponent‘][‘street‘]) ? $html[‘result‘][‘addressComponent‘][‘street‘] : $html[‘result‘][‘formatted_address‘],
        ‘lng‘    => $html[‘result‘][‘location‘][‘lng‘],
        ‘lat‘     => $html[‘result‘][‘location‘][‘lat‘],
      );

      $_SESSION[‘MyLocation‘] = $myLocation;
    }
  }
}

php擷取ios或android通過檔案頭(header)傳過來的座標,通過百度介面擷取具體城市和地址,並存入到session中。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.