X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/389138abfe11eef3207f63d432865b00119beb3c..3741afa6dc5eced78483b2c2793a8eead0a2396e:/lib-php/lib.php diff --git a/lib-php/lib.php b/lib-php/lib.php index a1f528fa..3ba50dc0 100644 --- a/lib-php/lib.php +++ b/lib-php/lib.php @@ -1,4 +1,12 @@ $b['importance']?-1:1); + } return $a['foundorder'] <=> $b['foundorder']; } @@ -227,3 +225,12 @@ function closestHouseNumber($aRow) return max(min($aRow['endnumber'], $iHn), $aRow['startnumber']); } + +if (!function_exists('array_key_last')) { + function array_key_last(array $array) + { + if (!empty($array)) { + return key(array_slice($array, -1, 1, true)); + } + } +}