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

getMenuList() public method

获取菜单列表
public getMenuList ( ) : boolean
return boolean
    public function getMenuList()
    {
        $result = $this->httpRaw(self::WECHAT_MENU_GET_URL . 'access_token=' . $this->getAccessToken());
        return isset($result['menu']['button']) ? $result['menu']['button'] : false;
    }
Wechat