PHP code example of ricasolucoes / phpinsight
1. Go to this page and download the library: Download ricasolucoes/phpinsight library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ricasolucoes / phpinsight example snippets
use PHPInsight\Sentiment;
#....
$analyzer = new Sentiment();
$analyzer->categorise($string); #return text category, positive, negative or neutral
$scores = $analyzer->score($string);
#Returns text scores, for example
#(
# [neg] => 0.865
# [neu] => 0.108
# [pos] => 0.027
#)
bash
composer