Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/ Pusher-PHP Public

PHP Interface to the Pusher API

Notifications You must be signed in to change notification settings

cj/Pusher-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

20 Commits

Repository files navigation

Pusher PHP Library

This is a very simple PHP library to the Pusher API (http://pusherapp.com). Using it is easy as pie:

require('Pusher.php');
$pusher = new Pusher($key, $secret, $app_id, $channel);
$pusher->trigger('my_event', 'hello world');

Debugging

You can either turn on debugging by setting the third argument like so, to true:

$pusher->trigger('event', 'data', true)

or with all requests:

$pusher = new Pusher($key, $secret, $app_id, $channel, true);

On failed requests, this will return the server's response, instead of false.

Channels

You can specify the channel either while constructing the Pusher object as described above, or while triggering an event:

$pusher->trigger('event', 'data', null, 'channel');

Socket id

In order to avoid duplicates you can optionally specify the sender's socket id while triggering an event (http://pusherapp.com/docs/duplicates):

$pusher->trigger('event','data','socket_id');

License

Copyright 2010, Squeeks. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php

About

PHP Interface to the Pusher API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /