Skip to content

Instantly share code, notes, and snippets.

View suterlan's full-sized avatar

Suterlan Apandi suterlan

  • Keboon
  • Cianjur, Jawa Barat, Indonesia
View GitHub Profile
@suterlan
suterlan / distance-sample.php
Created January 26, 2024 17:19 — forked from LucaRosaldi/distance-sample.php
PHP: Get Distance Between two Geolocated Points (lat/lon)
<?php
/* These are two points in New York City */
$point1 = array('lat' => 40.770623, 'long' => -73.964367);
$point2 = array('lat' => 40.758224, 'long' => -73.917404);
$distance = getDistanceBetweenPoints($point1['lat'], $point1['long'], $point2['lat'], $point2['long']);
foreach ($distance as $unit => $value) {
echo $unit.': '.number_format($value,4).'<br />';
}