X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/96c0b0e33be79cb00310022e17d7cd71cde75d6f..c55ebf5c95eff81339fdfe2e7912fa163c14f9d7:/lib/lib.php diff --git a/lib/lib.php b/lib/lib.php index d7ccf2d2..fa71d296 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]); }