]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/lib.php
remove unused variables
[nominatim.git] / lib-php / lib.php
index a1f528fa89995cd8de9af08cf9a0e658694cd3c8..69c29afac76a7acd15a80c68b7c068916fed1b03 100644 (file)
@@ -47,7 +47,8 @@ function fail($sError, $sUserError = false)
 {
     if (!$sUserError) $sUserError = $sError;
     error_log('ERROR: '.$sError);
-    var_dump($sUserError)."\n";
+    var_dump($sUserError);
+    echo "\n";
     exit(-1);
 }
 
@@ -227,3 +228,10 @@ 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));
+    }
+}