risan / sentiment-analysis
PHP 情感分析库,用于将文本分类为正面、负面或中性。
dev-master
2016-03-10 23:57 UTC
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is auto-updated.
Last update: 2024-09-17 20:30:00 UTC
README
PHP 情感分析库,用于将文本分类为正面、负面或中性。
安装
要使用 Composer 安装此库,请在您的项目目录中运行以下命令
composer require risan/sentiment-analysis
基本用法
<?php // Include composer autoloader file. require __DIR__ . '/vendor/autoload.php'; // Create a new instance of analyzer with default configuration. $analyzer = SentimentAnalysis\Analyzer::withDefaultConfig(); // Analyze the text. $result = $analyzer->analyze('This PHP package is awesome'); // Get and print the category. echo $result->category();