Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
9 | 1 | public function getGeolocation() |
|
10 | { |
||
11 | 1 | $url="http://api.map.baidu.com/geocoder/v2/?location=".$this->latitude.",".$this->longitude."&output=json&pois=1&ak=".$this->ak; |
|
12 | 1 | $file_contents=file_get_contents($url); |
|
13 | 1 | $json_content=json_decode($file_contents, true); |
|
14 | 1 | return $json_content; |
|
15 | } |
||
17 |