ZBlogPHP::LoadTags PHP Method

LoadTags() public method

载入标签列表
public LoadTags ( )
    public function LoadTags()
    {
        $this->tags = array();
        $this->tagsbyname = array();
        $array = $this->GetTagList();
        foreach ($array as $t) {
            $this->tags[$t->ID] = $t;
            $this->tagsbyname[$t->Name] =& $this->tags[$t->ID];
        }
    }
ZBlogPHP