Turba_Object_Group::count PHP 메소드

count() 공개 메소드

Count the number of contacts in this group.
public count ( ) : integer
리턴 integer
    public function count()
    {
        $children = @unserialize($this->attributes['__members']);
        if (!is_array($children)) {
            return 0;
        } else {
            return count($children);
        }
    }