PHP Package: voku/stop-words

A PHP library for handling stop words in text processing for NLP tasks.

Current Version: 2.0.1
Last Updated: Date not available
PHP Requirement: >=7.0.0
Dependencies:
voku/portable-ascii
voku/portable-utf8
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

stop-words is a PHP library designed to efficiently manage and eliminate common stop words in natural language processing (NLP) applications. It provides a comprehensive set of tools to preprocess and clean textual data, enhancing the accuracy of NLP models and algorithms. By seamlessly handling stop words, this library streamlines the text processing pipeline, enabling developers to focus on core NLP tasks.

🔗 View on GitHub

Download Latest Version: 2.0.1

Download Download v2.0.1

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/voku/stop-words/2.0.1/loader.php';
require_once 'libs/voku/portable-ascii/2.0.3/loader.php';
require_once 'libs/voku/portable-utf8/6.0.13/loader.php';

use Vend\StopWords\StopWords;

$obj = new StopWords();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.