Jump to content
  • 0

Дробный цикл


d0ublezer0
 Share

Question

Помогите с куском кода, плз. Голова сломалась. Понимаю, что просто, но не вижу как )

Задача выводить 5 звезд, рейтинга. Каждая может быть включена полностью, включена наполовину или выключена

$sscore     = 3.5;
for ($i = 0.5; $i <= 5; $i += 0.5)
{
	if ($i < $sscore) $star_class = "star-on";
	if ($i == $sscore && is_int($sscore)) $star_class = "star-on";
	if ($i == $sscore && is_float($sscore)) $star_class = "star-half";
	if ($i > $sscore) $star_class = "star-off";
	if ($i == intval($i) || $i == $sscore && is_float($sscore))
	{
		echo "<i class='$star_class'></i>";
	}
}

если оставить intval то выводится 5 звезд, но полу-звезда не показывается, а с моим условием - отображается одна звезда лишняя

Edited by d0ublezer0
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

А если так?
 

$step = 0.5;
$sscode     = '3.5';
for ($i = 1; $i <= 5; $i += 1)
{
  $star_class = '';
  if($sscode >= $i) $star_class = 'star-on';
  else if($sscode >= ($i-$step)) $star_class = 'star-half';
  else $star_class = 'star-off';
  echo '<i class='.$star_class.'></i>';
}

 

Link to comment
Share on other sites

  • 0
3 часа назад, Switch74 сказал:

А если так?

Так не сработало (проверял первый опубликованный вариант, второй исправленный не тестировал)

Сделал так:

$sscore = $comment->rating/2;
$int_score = floor($sscore);
for ($i = 1; $i <= 5; $i++)
{
	if ($i <= $sscore) $star_class = "fa-star fa-star--on";
	if ($i > $sscore) $star_class = "fa-star-o fa-star--off";
	if ($i == $int_score && $sscore > $i) $star_class = "fa-star fa-star-half-o";
	echo "<i class='fa fa-fw $star_class'></i>";
}

 

Edited by d0ublezer0
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy