X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/38a99856c0ce34c47fa96a05720a3a77fc0fe092..9610664fc566a912915f4a4f5abcf8981c2f9f4b:/lib/TokenList.php diff --git a/lib/TokenList.php b/lib/TokenList.php index fce5f940..1b6a1dcf 100644 --- a/lib/TokenList.php +++ b/lib/TokenList.php @@ -80,6 +80,21 @@ class TokenList return isset($this->aTokens[$sWord]) ? $this->aTokens[$sWord] : array(); } + public function getFullWordIDs() + { + $ids = array(); + + foreach ($this->aTokens as $aTokenList) { + foreach ($aTokenList as $oToken) { + if (is_a($oToken, '\Nominatim\Token\Word') && !$oToken->bPartial) { + $ids[$oToken->iId] = $oToken->iId; + } + } + } + + return $ids; + } + /** * Add token information from the word table in the database. * @@ -151,7 +166,8 @@ class TokenList $oToken = new Token\Word( $iId, $aWord['word_token'][0] != ' ', - (int) $aWord['count'] + (int) $aWord['count'], + substr_count($aWord['word_token'], ' ') ); }