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

updateGroupName() public method

根据分组ID修改分组名
public updateGroupName ( $id, $name ) : boolean
$id 分组的ID
$name 修改后的分组名
return boolean
    public function updateGroupName($id, $name)
    {
        $result = $this->httpRaw(self::WECHAT_UPDATE_GROUP_NAME_URL . 'access_token=' . $this->getAccessToken(), ['group' => ['id' => $id, 'name' => $name]]);
        return isset($result['errmsg']) && $result['errmsg'] == 'ok';
    }
Wechat