如何在 5 星级评级系统中使用 php 喜欢和不喜欢进行转换?
Let's say i have a database entry like this:
video_id | likes | dislikes
654 5 12
What i want to do is to transform the number of likes and dislikes into a 5 stars rating for google rich snippets.
Do you have any ideas? Some code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获得 1 到 5 之间的评分,您可以执行以下操作:
不过,请记住要特别注意没有投票的情况。
To get a rating between 1 and 5, you could do the following:
Remember to take special care of the case where there are no votes, though.