当前位置:Gxlcms > PHP教程 > php云标签的实现代码

php云标签的实现代码

时间:2021-07-01 10:21:17 帮助过:22人阅读

为大家分享一个php 云标签的代码,现在这个很流行的哦,有需要的朋友参考下吧。

在如今的php网站中,云标签的大量应用,使页面显得生效而有趣,也增加了相关内容的索引与检索。 本节分享一段php 云标签的实现代码,有兴趣的朋友,可以研究下。

1,css代码部分

2,php 云标签的展示部分


40, 'tagname' =>'tutorials', 'url'=>'http://bbs.it-home.org/tutorials/'),
        array('weight'  =>12, 'tagname' =>'examples', 'url'=>'http://bbs.it-home.org/examples/'),
        array('weight'  =>10, 'tagname' =>'contact', 'url'=>'http://bbs.it-home.org/contact/'),
        array('weight'  =>15, 'tagname' =>'quotes', 'url'=>'http://bbs.it-home.org/quotes/'),
        array('weight'  =>28, 'tagname' =>'devel', 'url'=>'http://bbs.it-home.org/phpdev/'),
        array('weight'  =>35, 'tagname' =>'manual', 'url'=>'http://bbs.it-home.org/en/index.html'),
        array('weight'  =>20, 'tagname' =>'articles', 'url'=>'http://bbs.it-home.org/articles/'),
);
 
/*** create a new tag cloud object ***/
$tagCloud = new tagCloud($tags);

echo $tagCloud -> displayTagCloud();

?>



tagsArray = $tags;
}

/**
 *
 * Display tag cloud
 *
 * @access public
 *
 * @return string
 *
 */
public function displayTagCloud(){
 $ret = '';
 shuffle($this->tagsArray);
 foreach($this->tagsArray as $tag)
    {
    $ret.=''.$tag['tagname'].''."\n";
    }
 return $ret;
}
    

} /*** end of class ***/

?>

php 云标签的演示效果,如下图: php云标签

人气教程排行