芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/vendor/torann/geoip/src/Services/IPFinder.php
client = new HttpClient([ 'base_uri' => 'https://api.ipfinder.io/v1/', 'headers' => [ 'User-Agent' => 'Laravel-GeoIP-Torann', ], 'query' => [ 'token' => $this->config('key'), ], ]); } /** * {@inheritdoc} * @throws Exception */ public function locate($ip) { // Get data from client $data = $this->client->get($ip); // Verify server response if ($this->client->getErrors() !== null || empty($data[0])) { throw new Exception('Request failed (' . $this->client->getErrors() . ')'); } $json = json_decode($data[0], true); return $this->hydrate($json); } }