X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/29e78780e5cc702a7ee7facfef4d51ef9aaebfe9..bd04ce62e039b090d4b5ec2c0baa767defde2fc4:/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]); }