1. Go to this page and download the library: Download chency147/geohash library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chency147 / geohash example snippets
$geohash = new GeoHash();
$hash = $geohash->encode(120.20000, 30.26667);
// 变量$hash的值为'wtmkpjyuph'。
$geohash = new GeoHash();
$result = $geohash->decode('wtmkpjyuph');
// 变量$result为一数组,$result[0]为经度,$result[1]为纬度。