是否可以在布局样式“框计数”中显示实际的确切点赞数?并且没有对数字进行四舍五入?

发布于 2024-11-29 03:53:40 字数 110 浏览 2 评论 0原文

是否可以在布局样式“框计数”中显示实际的确切点赞数,例如 1019,而不是主页上点赞按钮中的四舍五入 1K?

我不想使用标准布局样式。我想使用盒子计数。

有办法做到这一点吗?

Is it possible to show the actual exact count of likes in the layout style "box count" for example 1019 not the rounded 1K in the like button on my homepage?

I do not want to use the standard layout style. I want to use the box count.

Is there a way to do this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

有深☉意 2024-12-06 03:53:40

http://graph.facebook.com/?id=http ://url.to/get/likes

你可以使用 PHP & 获取它。将其放入页面

,例如

<?php
$data = file_get_contents("http://graph.facebook.com/?id=http://www.stackoverflow.com");
$id_likes = json_decode($data);
$likes = $id_likes->shares;
echo $likes;
?>

工作演示

http://graph.facebook.com/?id=http://url.to/get/likes

you can get it with PHP & put it to page

so for example

<?php
$data = file_get_contents("http://graph.facebook.com/?id=http://www.stackoverflow.com");
$id_likes = json_decode($data);
$likes = $id_likes->shares;
echo $likes;
?>

working demo

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