https://github.com/voku/stop-words
PHP | A collection of stop words for e.g. search-functions.
https://github.com/voku/stop-words
hacktoberfest php stop-words stopwords
Last synced: 6 months ago
JSON representation
PHP | A collection of stop words for e.g. search-functions.
- Host: GitHub
- URL: https://github.com/voku/stop-words
- Owner: voku
- License: mit
- Created: 2017-05-04T17:32:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-08T15:04:05.000Z (8 months ago)
- Last Synced: 2025-04-01T07:51:45.171Z (7 months ago)
- Topics: hacktoberfest, php, stop-words, stopwords
- Language: PHP
- Homepage:
- Size: 57.6 KB
- Stars: 88
- Watchers: 4
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/voku/stop-words)
[](https://coveralls.io/github/voku/stop-words?branch=master)
[](https://scrutinizer-ci.com/g/voku/stop-words/?branch=master)
[](https://www.codacy.com/app/voku/stop-words?utm_source=github.com&utm_medium=referral&utm_content=voku/stop-words&utm_campaign=Badge_Grade)
[](https://insight.sensiolabs.com/projects/316837f1-afb0-4ea5-938e-340527eeb4e6)
[](https://packagist.org/packages/voku/stop-words)
[](https://packagist.org/packages/voku/stop-words)
[](https://packagist.org/packages/voku/stop-words)
[](https://packagist.org/packages/voku/stop-words)# Stop-Words
## Description
A collection of stop words stop words in various languages for e.g. search-functions.
* [Installation](#installation)
* [Usage](#usage)
* [History](#history)## Installation
1. Install and use [composer](https://getcomposer.org/doc/00-intro.md) in your project.
2. Require this package via composer:```sh
composer require voku/stop-words
```## Usage
```php
use voku\helper\StopWords;$stopWords = new StopWords();
$stopWords->getStopWordsFromLanguage('de');
```Available languages
-------------------
* Arabic (ar)
* Bulgarian (bg)
* Catalan (ca)
* Croatian (hr)
* Czech (cz)
* Danish (da)
* Dutch (nl)
* English (en)
* Esperanto (eo)
* Estonian (et)
* Finnish (fi)
* French (fr)
* Georgian (ka)
* German (de)
* Greek (el)
* Hindi (hi)
* Hungarian (hu)
* Indonesian (id)
* Italian (it)
* Latvian (lv)
* Lithuanian (lt)
* Norwegian (no)
* Polish (pl)
* Portuguese (pt)
* Romanian (ro)
* Russian (ru)
* Slovak (sk)
* Spanish (es)
* Swedish (sv)
* Turkish (tr)
* Ukrainian (uk)
* Vietnamese (vi)## History
See [CHANGELOG](CHANGELOG.md) for the full history of changes.