PHP 创建标签云函数代码
PHP 创建标签云函数代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:functiongetCloud($data=array(),$minFontSize=12,$maxFontSize=3...

复制代码 代码如下:

function getCloud( $data = array(), $minFontSize = 12, $maxFontSize = 30 )

{

$minimumCount = min( array_values( $data ) );

$maximumCount = max( array_values( $data ) );

$spread = $maximumCount - $minimumCount;

$cloudHTML = '';

$cloudTags = array();

$spread == 0 && $spread = 1;

foreach( $data as $tag => $count )

{

$size = $minFontSize + ( $count - $minimumCount )

* ( $maxFontSize - $minFontSize ) / $spread;

$cloudTags[] = '<a . floor( $size ) . 'px'

. '" href="#" title="'' . $tag .

'' returned a count of ' . $count . '">'

. htmlspecialchars( stripslashes( $tag ) ) . '</a>';

}

return join( "n", $cloudTags ) . "n";

}

/**************************

**** Sample usage ***/

$arr = Array('Actionscript' => 35, 'Adobe' => 22, 'Array' => 44, 'Background' => 43,

'Blur' => 18, 'Canvas' => 33, 'Class' => 15, 'Color Palette' => 11, 'Crop' => 42,

'Delimiter' => 13, 'Depth' => 34, 'Design' => 8, 'Encode' => 12, 'Encryption' => 30,

'Extract' => 28, 'Filters' => 42);

echo getCloud($arr, 12, 36);

这里是摘自查字典教程网之前发布的文章。更多的技巧可以参考。

收集的二十一个实用便利的PHP函数代码

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类