如何为每个x数字制作图像

时间:2016-11-25 20:46:28

标签: php html

如何用图像替换200个数字?

这个例子:

here

例如

  • 当用户有200个号码时,他需要1个图像
  • 当用户有830时他拍摄4张图像

我需要什么PHP代码?

抱歉,但我没有任何代码

提前致谢

1 个答案:

答案 0 :(得分:0)

$votes = 10334;
$starCount = intval($votes/ 200);
$starCount = $starCount > 5 ? 5 : $starCount; //if maximum 5 stars

$a = 1;
$starsString = '';
for ($a; $a <= $starCount; $a++) {
    $starsString .= '⛤'; // or '<img src="https://i.stack.imgur.com/EhAy4.gif" alt="here">'
}

echo $starsString;