vbpupil /
用于存储和计算评论分数的评论模块
1.0.1
2020-06-27 10:43 UTC
Requires
- php: >=7.4
- vbpupil/collection: >=1.0
Requires (Dev)
- phpunit/phpunit: 7.0.0
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2024-09-27 20:22:03 UTC
README
评论
此库允许您方便地存储用户评论。此外,该库还提供了快速访问极端评论(即最佳和最差评论)的功能,同时提供平均评分。
如何
<?php include "vendor/autoload.php"; use vbpupil\Review\Review; use vbpupil\Review\ReviewCalculator; use vbpupil\Review\ReviewCollection; //1 create a review collection $c = new ReviewCollection(); //2 add in items to the collection $c->addItem(new Review('John G', 'love this product', 'well what can i say its awesome', 5)) ->addItem(new Review('Gina', 'its okay', 'well it was all right', 4)) ->addItem(new Review('Adele', 'its okay, i suppose', 'meh', 3)) ->addItem(new Review('Christina', 'its okay, i suppose', 'meh *2', 2)) ->addItem(new Review('Paul', 'nice', 'nice one would buy again', 1)); //3 create a review calculator $rc = new ReviewCalculator(); //4 run calculate - this will now generate figures on your collection var_dump($rc->calculate($c)); //5 now grab the best review var_dump($rc->getBest()); //6 now grab the best reviewers name echo "The best reviewer is: {$rc->getBest()->getName()}<br /><br />"; //7 pull out the average star rating echo 'The average score rating of: '. number_format($rc->getScore(),2); //8 get the total number of reviews echo '<br /><br />The total number of reviews: '. $rc->getCount(); //9 loop reviews foreach ($c->getItems() as $r) { echo <<<TXT <br><br> Name: {$r->getName()}<br> Title: {$r->getTitle()}<br> Description: {$r->getDescription()}<br> Date Published: {$r->getDatePublished()}<br> Rating: {$r->getRating()}<br> Lowest Score: {$r->getRatingMax()}<br> Highest Score: {$r->getRatingMin()}<br><br> *************************************** TXT; }