himi/cmq

Tencent Cloud's CMQ For PHP5.6+

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.0.4 2017-08-14 09:44 UTC

This package is not auto-updated.

Last update: 2023-04-01 19:15:42 UTC


README

本项目是腾讯云官方SDK的整合[未官方授权,仅为个人使用]

腾讯云官方SDK

使用方法与官方SDK的Demo一样,仅仅是对资源进行了整合,以便于直接用� Composer 直接下载安装

查看队列列表

<?php

use Cmq\Data\Account;

class test
{
    public function test()
    {
        $host = '';
        $secret_id = '';
        $secret_key = '';
        $account = new Account($host, $secret_id, $secret_key);
        $result = $account->list_queue();
        echo json_encode($result);
    }
}

>