khaninejad/keyword-extract

There is no license information available for the latest version (dev-master) of this package.

Extract keywords from a text or string

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/khaninejad/keyword-extract

dev-master 2017-07-03 06:51 UTC

This package is not auto-updated.

Last update: 2025-09-28 08:18:05 UTC


README

This class used to analyze content and create top related keywords

Usage

$keyword=new KeywordGenerate(trim(strip_tags("example paragraph")));
$rate1=$keyword->rateKeyword(1);
$rate2=$keyword->rateKeyword(2);
$level1=$keyword->levelTwo($rate1);

echo "<pre>";
print_r($rate1);
print_r($rate2);
print_r($level1);
echo "</pre>"