library keyword-extract
Extract keywords from a text or string
khaninejad/keyword-extract
Extract keywords from a text or string
- Monday, July 3, 2017
- by copify
- Repository
- 1 Watchers
- 0 Stars
- 0 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
This class used to analyze content and create top related keywords, (*1)
Usage
```require_once("keyword.php");
$keyword=new KeywordGenerate(trim(strip_tags("example paragraph")));
$rate1=$keyword->rateKeyword(1);
$rate2=$keyword->rateKeyword(2);
$level1=$keyword->levelTwo($rate1);, (*2)
echo ", (*3)
";
print_r($rate1);
print_r($rate2);
print_r($level1);
echo "
", (*4)