无论如何要在拇指上添加一个 php 观看次数计数器?

Is there anyway to add a php views counter numbers on the thumb?

嗯。我在网上搜索但找不到那个脚本,我找到的是一个 php 脚本,它在单独的页面上为您提供观看次数计数器,无论如何在列表中是否可以添加一个 bootstrap 缩略图在描述中每次点击的观看次数?不管怎么说,还是要谢谢你。

Ps:我问这个问题的时候并没有试图完成它,我正在研究它,只是为了让事情变得更容易。两个想法比一个更好

如果我没理解错的话,您需要在 php 中创建图像。诸如此类。

<?php
header("Content-type: image/png");
$string = "Test image";
$im     = imagecreatefrompng("images/button1.png");
$orange = imagecolorallocate($im, 220, 210, 60);
$px     = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 9, $string, $orange);
imagepng($im);
imagedestroy($im);

然后,您应该计算图像浏览量并将它们以与 $string="Test image";

相同的方式添加到图像上