如何逃避一段时间的php和mysql问题?

时间:2009-12-05 09:37:21

标签: php mysql

好的,这就是我想要做的事情,我想要逃避这段时间,所以我可以在我的代码中添加一个.8em字体和一个2.5em字体,而不是简单的数字字体。我尝试在这个剧本中以三种不同的方式逃避这段时间,但我认为我做错了。

这是我在脚本中的字体大小。

$min_size = 1; //change to .8
$max_size = 2; //change to 2.5

以下是显示字体大小的脚本的一部分。

$tags = tag_info();

$minimum_count = min(array_values($tags));
$maximum_count = max(array_values($tags));
$spread = $maximum_count - $minimum_count;

if($spread == 0) {
$spread = 1;
}

$cloud_html = '';
$cloud_tags = array();

foreach ($tags as $tag => $count) {
$size = $min_size + ($count - $minimum_count)
* ($max_size - $min_size) / $spread;
$cloud_tags[] = '<a style="font-size: '. floor($size) . 'em'
. '" class="tag_cloud" href="http://www.example.com/tags/' . $tag .'/'
. '" title="\'' . $tag . '\' returned a count of ' . $count . '">'
. htmlspecialchars(stripslashes($tag)) . '</a>';
}
$cloud_html = join("\n", $cloud_tags) . "\n";
return $cloud_html;

}

1 个答案:

答案 0 :(得分:1)

floor($size)$size的{​​{1}}值2.5改为2,将0.8改为0。你为什么还在使用floor