An open API service indexing awesome lists of open source software.

https://github.com/tdebatty/php-language-processing

A PHP library for language processing. Includes string distance function (Levenshtein, Jaro-Winkler,...), stemming, etc.
https://github.com/tdebatty/php-language-processing

Last synced: 7 months ago
JSON representation

A PHP library for language processing. Includes string distance function (Levenshtein, Jaro-Winkler,...), stemming, etc.

Awesome Lists containing this project

README

          

# php-language-processing

[![Latest Stable Version](https://poser.pugx.org/webd/language/v/stable)](https://packagist.org/packages/webd/language) [![Total Downloads](https://poser.pugx.org/webd/language/downloads)](https://packagist.org/packages/webd/language)

A PHP library for language processing. Includes string distance function
(Levenshtein, Jaro-Winkler, LCS-distance...), stemming, hashing etc.

Installation using Composer
---------------------------

in composer.json :
```
"require": {
"webd/language": "dev-master"
}
```

Then
```
composer install
```

Usage
-----

```php
use webd\language\StringDistance;

$string1 = "You won 10000$";
$string2 = "You won 15500$";

echo "Edit distance : " . StringDistance::EditDistance($string1, $string2);
echo "Levenshtein : " . StringDistance::Levenshtein($string1, $string2);
echo "Jaro-Winkler : " . StringDistance::JaroWinkler($string1, $string2);
echo "Jaro-Winkler (prefix scale = 0.2) : " . StringDistance::JaroWinkler($string1, $string2, 0.2);

use webd\language\PorterStemmer;
echo "analyzing => " . PorterStemmer::Stem("analyzing");
echo "abandoned => " . PorterStemmer::Stem("abandoned");
echo "inclination => " . PorterStemmer::Stem("inclination");

$lcs = new \webd\language\LCS($str1, $str2);
echo $lcs->value();
echo $lcs->length();
echo $lcs->distance();

// SpamSum, aka ssdeep, aka Context-Triggered Piecewize Hashing (CTPH):
$s = new \webd\language\SpamSum;
echo $s->HashString(file_get_contents($f));
```