How to Calculate distance between two address using latitude and longitude.

Code

How to Calculate distance between two address using latitude and longitude.

According To me it’s one of important requirement in many projects related to address. To Calculate distance between two address using latitude and longitude use this method.

function LongLatDistance($Latitude1, $Longitude1, $Latitude2, $Longitude2) {
$theta = $Longitude1 - $Longitude2;
$miles = (sin(deg2rad($Latitude1))*sin(deg2rad($Latitude2)))+(cos(deg2rad($Latitude1))*cos(deg2rad($Latitude2)) * cos(deg2rad($theta)));
$miles = acos($miles);
$miles = rad2deg($miles);
$result['miles'] = $miles * 60 * 1.1515;
$result['feet'] = $result['miles'] * 5280;
$result['yards'] = $result['feet'] / 3;
$result['kilometers'] = $result['miles'] * 1.609344;
$result['meters'] = $result['kilometers'] * 1000;
return $result;
}
$distance = LongLatDistance($lat1='27.3766', $lon1='75.5580', $lat2='26.9124', $lon1='75.7873' );
var_dump($distance);

OUTPUT
array(5) {
["miles"]=>float(35.033155471693)
["feet"]=>float(184975.06089054)
["yards"]=>float(61658.35363018)
["kilometers"]=>float(56.380398559437)
["meters"]=>float(56380.398559437)
}

Enjoy.

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

AI-Driven Learning Management Systems: Unlocking the Future of Digital Training in 2025

  AI-Driven Learning Management Systems:Unlocking the Future of Digital Training in 2025 Digital Learning Transformed by Artificial Intelligence The world…

Shafeeq Khan
November 5, 2025

Smarter Learning for a Smarter Era: How AI Is Transforming Learning Management Systems (LMS) in 2025

  Smarter Learning for a Smarter Era: How AI IsTransforming Learning Management Systems(LMS) in 2025 From Static Systems to Intelligent…

Shafeeq Khan
October 3, 2025

AI Overviews and Google Search: What Businesses Need to Know in 2025

  AI Overviews and Google Search: What Businesses Need to Know in 2025 Entering the Age of AI Overviews The…

Shafeeq Khan
September 23, 2025

Leave a Reply

Your email address will not be published. Required fields are marked *