<?php // stub $lvl = [ 'level' => 4 ]; // render $maxStars = 5; $stars = (int)$lvl['level']; $output = str_repeat('★', $stars) . str_repeat('☆', $maxStars - $stars) . ' stars'; echo $output;
You have javascript disabled. You will not be able to edit any code.