Skip to content

A PHP library for interacting with Thunderpush server API.

License

Notifications You must be signed in to change notification settings

thunderpush/php-thunderclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thunderpush client for PHP

https://travis-ci.org/thunderpush/php-thunderclient.png?branch=master

A PHP library for sending messages to the Thunderpush server.

Example

<?php

require_once('Thunder.php');

$thunder = new Thunder('key', 'secretkey', 'localhost', '8080');

// Get user count
print $thunder->get_user_count();

// Get users in channel "test"
print $thunder->get_users_in_channel("test");

// Send message to user "test"
print $thunder->send_message_to_user("test", array("msg" => "hello!"));

// Send message to a channel
print $thunder->send_message_to_channel("test", array("msg" => "hello!"));

// Check if user "test" is online
print $thunder->is_user_online("test");

// Disconnect user "test"
print $thunder->disconnect_user("test");

About

A PHP library for interacting with Thunderpush server API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages