callmez\wechat\sdk\Wechat::createGroup PHP Method

createGroup() public method

创建分组
public createGroup ( $name ) : array | boolean
$name 分组名称
return array | boolean
    public function createGroup($name)
    {
        $result = $this->httpRaw(self::WECHAT_CREATE_GROUP_URL . 'access_token=' . $this->getAccessToken(), ['group' => ['name' => $name]]);
        return isset($result['group']) ? $result['group'] : false;
    }
Wechat