You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Gogs 8437b4330c modify 3 years ago
..
examples modify 3 years ago
lib modify 3 years ago
README.md modify 3 years ago

README.md

shopex Prism sdk (php version)

基本设置

    require_once('prism-php/lib/client.php');

    $url = 'http://127.0.0.1:8080/api';
    $key = 'ysw6o4wl';
    $secret = 'fe24mkjmxh5wch4cbob7';

    $c = new prism_client($url, $key, $secret);

    /* 日志信息输出
    * $c->set_logger(function($message){
    *     echo $message;
    *     flush();
    * });
    */

发起Api请求

    $params = array(
        'username'=>'b', 
        'password'=>'c',
        );
    $a = $c->post('/user/login', $params);
    var_dump($a);

消息队列

发布数据

    $mq = $c->notify();

    $i=0;
    while(1){
        $data = $mq->get();
        echo $data, "\n";
        $data->ack();
        $i++;
    }

消费队列中的数据

    $mq = $c->notify();

    $i=0;
    while(1){
        $data = $mq->get();
        echo $data, "\n";
        $data->ack();
        $i++;
    }