如何在 5 星级评级系统中使用 php 喜欢和不喜欢进行转换?

发布于 2024-12-22 18:31:42 字数 302 浏览 2 评论 0原文

假设我有一个这样的数据库条目:

video_id | likes | dislikes

 654         5          12

我想要做的是将喜欢和不喜欢的数量转换为 Google 丰富网页摘要

你有什么想法吗?一些代码?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城旧梦 2024-12-29 18:31:42

要获得 1 到 5 之间的评分,您可以执行以下操作:

$rating = 1 + 4 * $likes / ($likes + $dislikes);

不过,请记住要特别注意没有投票的情况。

To get a rating between 1 and 5, you could do the following:

$rating = 1 + 4 * $likes / ($likes + $dislikes);

Remember to take special care of the case where there are no votes, though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文