8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

星3つを表示するPHPスクリプト

Posted at

指定した数だけ星を埋めて表示する。サンプルでは「★★☆」を表示。もっとシンプルに書けないかな。

star.php
<?php

$level = 2;
$max   = 3;

$star1 = ($level > 0) ? array_fill(0, $level, "★") : array();
$stars = implode("", array_pad($star1, $max, "☆"));
var_dump($stars);
8
8
6

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?