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

getCardColors() public method

获取卡券颜色列表
public getCardColors ( ) : boolean
return boolean
    public function getCardColors()
    {
        $result = $this->httpGet(static::WECHAT_GET_CARD_COLORS_URL . 'access_token=' . $this->getAccessToken());
        return isset($result['colors']) ? $result['colors'] : false;
    }
Wechat