X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/29e78780e5cc702a7ee7facfef4d51ef9aaebfe9..49dc62201c1960f0d4279a440c1c29919b3d21b8:/lib/lib.php diff --git a/lib/lib.php b/lib/lib.php index e283e836..3c70d1de 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -14,7 +14,7 @@ function getProcessorCount() { $sCPU = file_get_contents('/proc/cpuinfo'); preg_match_all('#processor\s+: [0-9]+#', $sCPU, $aMatches); - return sizeof($aMatches[0]); + return count($aMatches[0]); }