vbpupil / reviews
Reviews module used to store and calculate review scores
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: 2025-03-27 21:18:08 UTC
README
Reviews
This library allows you a convenient way to store user reviews. The library also tries to be helpful by providing quick access to the extreme's ie the best and the worst reviews, aswell as providing the average score rating.
How
<?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; }