Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7659539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:20:46+00:00 2026-05-31T13:20:46+00:00

Does PHP have some kind of function that will compare the numbers? I know

  • 0

Does PHP have some kind of function that will compare the numbers? I know they have text comparison like similar_text() But say I want to compare lat/lng values, and they’re very similar but very slight difference

example :

place 1 

lat: 34.095161
lng: -117.720638

compare with

lat: 34.0948841
lng: -117.7206854

place 2

lat: 34.094572563643
lng: -117.72184828904

compare with 

lat: 34.094112
lng: -117.7250746

They maybe very close to each other which I want to be able to get a certain range? Is there some PHP function I can use?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T13:20:47+00:00Added an answer on May 31, 2026 at 1:20 pm

    I don’t think there’s a built in function. Maybe you could use an Euclidian distance to compute their similarity is an easy-to-implement way.

    $diff = sqrt((($lat1 - $lat2) * ($lat1 - $lat2)) + (($lng1 - $lng2) * ($lng1 - $lng2)));
    $epsilon = 0.0001;
    if ($diff < $espilon) {
        echo 'we consider them equal';
    } else {
        echo 'they are different';
    }
    

    NB : $diff is here a pure quantification of difference, you cannot consider lat/lng values as forming 2D points whose distance can be compute through Euclidian approach stricto sensu (see here why)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have found some libraries or web services in PHP that does the job.
I have a web application build on PHP that (does some processing and) displays
Pretty basic programming question, I know PHP have a function for it, but does
I'm trying to implement some kind of caching in a PHP script that will
I have a PHP script that does the following: Uses file_get_contents() to get content
I have a PHP page that does a couple of different things depending on
I have a PHP script that does basic encryption of a string through the
I have a class in PHP like so: class ParentClass { public function __construct($arg)
Does anybody experienced this kind of fault. So i have some kind of imageuploader.
I have a function in php which I would like to perform a simple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.