TrafficCop的官方PHP客户端。它为基本用法提供了一个非常简单的客户端,但也提供了非常面向对象的用法。只需查看示例文件即可。安装方式应该通过如下命令完成。


{ \"require\": { \"nesQuick/TrafficCophp\": \"dev-master\" } }

示例文件夹中提供了示例代码,一个简单的使用示例如下:


<?php

require __DIR__ . '/../vendor/.composer/autoload.php';

use TrafficCophp\Client;

$client = new Client('127.0.0.1', 3542);

$client->publish('channel_two', 'A little test message');