Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created September 9, 2020 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save luckyshot/9fe1be5a5332f8fa02abdaf8eda65bd8 to your computer and use it in GitHub Desktop.
Save luckyshot/9fe1be5a5332f8fa02abdaf8eda65bd8 to your computer and use it in GitHub Desktop.
PHP distance between two points (flat coordinates 2 XY axis)
<?php
function distance($x1, $y1, $x2, $y2){
return sqrt(
pow(abs($x1 - $x2), 2)
+
pow(abs($y1 - $y2), 2)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment